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