什么是写一个简短的[]数组在C#中的文件的最佳方法是什么?

什么是写一个简短的[]数组在C#中的文件的最佳方法是什么?

问题描述:

我有短裤的数组(简称[]),我需要写一个文件。什么是做到这一点的最快方法是什么?

I have an array of shorts (short[]) that I need to write out to a file. What's the quickest way to do this?

使用的BinaryWriter

Use the 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);
                }
            }
        }
    }