Beispiel #1
0
 public static uint ReadUint32(this Stream stream, bool bigEndian = false)
 {
     return(BinaryHelper.ByteToUInt32(ReadBytes(stream, 4), bigEndian));
 }