System.IO.BinaryWriter.Write(Gamma)

Here are the examples of the csharp api System.IO.BinaryWriter.Write(Gamma) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : BinaryWriterExtensions.cs
with MIT License
from dotnet

public static void Write(this BinaryWriter writer, IList<Gamma> array)
        {
            if (writer == null)
            {
                throw new ArgumentNullException(nameof(writer));
            }

            if (array == null)
            {
                throw new ArgumentNullException(nameof(array));
            }

            writer.Write(array.Count);
            foreach (Gamma element in array)
            {
                writer.Write(element);
            }
        }