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