C# 数组快速读取和写入

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 数组快速读取和写入相关的知识,希望对你有一定的参考价值。

摘要:

C# 数组快速读取和写入

1 BinaryFormatter binaryFormatter = new BinaryFormatter();
2 FileStream fileStream = new FileStream(@"E:\context.txt", FileMode.Create);
3 binaryFormatter.Serialize(fileStream, a);
4 fileStream.Dispose();
5 
6 FileStream s = new FileStream(@"E:\context.txt", FileMode.Open);
7 float[,] b = (float[,])(binaryFormatter.Deserialize(s));

 

以上是关于C# 数组快速读取和写入的主要内容,如果未能解决你的问题,请参考以下文章

c#代码片段快速构建代码

c#中对txt文件的读取与写入,针对二维数组

文件的读取和写入

记录C#常用的代码片段

c#读取文本文档实践3-写入到文本本文档

c#二进制文件的写入和读取