111,126
社区成员
发帖
与我相关
我的任务
分享
System.IO.FileStream fs = new System.IO.FileStream(文件路径, System.IO.FileMode.Open);
fs.Seek(最大长度, System.IO.SeekOrigin.End);
System.IO.StreamReader sr = new System.IO.StreamReader(fs, 编码);
string 要分析的数据 = sr.ReadToEnd();
fs.Close();
sr.Close();