A helper class for stream operations
Example #1
0
 /// <summary>
 /// Reads a byte from the stream.
 /// </summary>
 /// <returns>A byte value read from the stream.</returns>
 private byte ReadByte()
 {
     return(StreamHelper.ReadUInt8(this.stream));
 }