[C#] 纯文本查看 复制代码 using System.IO;
private string ReadContext(string path)
{
FileStream fs = new FileStream(path, FileMode.Open);
StreamReader sr = new StreamReader(fs);
string context = sr.ReadToEnd();
fs.Close();
sr.Close();
sr.Dispose();
fs.Dispose();
return context;
}
这是读取text的方法 调用ReadContext 参数给你的txt的路径 返回结果就是txt内容了
|