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# 数组快速读取和写入的主要内容,如果未能解决你的问题,请参考以下文章