在C#中将short []数组写入文件的最佳方法是什么?

前端之家收集整理的这篇文章主要介绍了在C#中将short []数组写入文件的最佳方法是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个短数组(short []),我需要写出一个文件.最快的方法是什么?

解决方法

使用BinaryWriter
static void WriteShorts(short[] values,string path)
    {
        using (FileStream fs = new FileStream(path,FileMode.OpenOrCreate,FileAccess.Write))
        {
            using (BinaryWriter bw = new BinaryWriter(fs))
            {
                foreach (short value in values)
                {
                    bw.Write(value);
                }
            }
        }
    }
原文链接:https://www.f2er.com/csharp/97977.html

猜你在找的C#相关文章