System.IO.Stream.ReadArray(int)

Here are the examples of the csharp api System.IO.Stream.ReadArray(int) 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 T[] ReadArray<T>(this Stream str, long position, int count) where T : struct
        {
            str.Position = position;
            return str.ReadArray<T>(count);
        }