System.BadImageFormatException”类型的未经处理的异常在 xx.exe 中发生
- 有很大的可能性是因为平台目标(X86、X64)不一致
- 配置文件版本问题
读取文本内容
一次将文本内容全部读完,并返回一个包含全部文本内容的字符串
1 | string str = File.ReadAllText(@"c:\temp\ascii.txt", Encoding.ASCII); |
参考资料
一次将文本内容全部读完,并返回一个包含全部文本内容的字符串
1 | string str = File.ReadAllText(@"c:\temp\ascii.txt", Encoding.ASCII); |
参考资料