C#读写文件宜取方式.md

C#读写文件宜取方式 首先,不推荐用以下方式读写web //读 using (FileStream fs = File.OpenRead(filePath)) { byte[] b = new byte[1024 * 4]; UTF8Encoding temp = new UTF8Encoding(true); while (fs.Read(b, 0, b.Len
相关文章
相关标签/搜索