C#如何取出TXT文本
using System.IO;public void WriteContext(string Context,string path)
{
StreamWriter sw = new StreamWriter(path);
sw.Write(Context);
sw.Close();
sw.Dispose();
}
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;
}请结合【C#如何存入TXT文件】一起学习
:):):):):)支持 我觉得还是和写入文件的那个帖子放在一起比较好。。。 谢谢分享!!! 谢谢分享!!! 請教如何取出TXT文檔的指定的几行?多謝大神······ 没有注释 新人求指教
页:
[1]