System.IO.Stream.ReadUInt8()

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

1 Examples 7

19 Source : StreamExtensions.cs
with The Unlicense
from marcussacana

public static sbyte ReadInt8(this Stream s) => unchecked((sbyte)s.ReadUInt8());