System.IO.Stream.Write(T)

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

1 Examples 7

19 Source : StreamExtension.cs
with GNU General Public License v3.0
from DarcPhansea

public static void Write<T>(this Stream str, long position, T value) where T : struct
        {
            str.Position = position;
            str.Write(value);
        }