รายละเอียดของการตอบ ::
ตัวนี้เลยครับ ใช้ได้แน่นอน
public static System.Collections.Generic.List<string> textFileReaderFormline(string pathFileName)
{
/* return new System.IO.StreamReader(pathFileName, System.Text.Encoding.GetEncoding(874)).ToString().Split('\n')
.ToList<string>();*/
System.Collections.Generic.List<string> list = new System.Collections.Generic.List<string>();
System.IO.StreamReader fs;
fs = new System.IO.StreamReader(pathFileName, System.Text.Encoding.GetEncoding(874));
string line;
while ((line = fs.ReadLine()) != null)
{
list.Add(line);
}
return list;
}