//C# 读取txt文件内容
public static string TxtRead(string txtFullName)
{
var str = "";
using (var sr = new System.IO.StreamReader(txtFullName))
{
str = sr.ReadToEnd();
}
return str;
}
07-03
09-14
2336
2336
09-24
2558
2558
08-10
3445
3445
06-24
7411
7411
05-04
1万+
1万+

被折叠的 条评论
为什么被折叠?



