首页 > 代码库 > C# 文件操作 随记

C# 文件操作 随记

文本文件-读取

System.IO.StreamReader sr = new System.IO.StreamReader(ofd.FileName, Encoding.Unicode);
string result = sr.ReadToEnd();


C# 文件操作 随记