Beispiel #1
0
 public static void Write(this Stream stream, uint value, bool bigEndian = false)
 {
     WriteBytes(stream, BinaryHelper.UInt32ToBytes(value, bigEndian));
 }