namespace XRTool.Util { /// /// 文件流类,封装IO读写方法,避免频繁的读写文件 /// public class FileStramHelper { /// /// 文件读写流 /// private string filePath; /// /// 创建一个文件读写流 /// /// public FileStramHelper(string filePath) { this.filePath = filePath; } } }