示例#1
0
 public static short ReadInt16(this Stream stream, bool bigEndian = false)
 {
     return(BinaryHelper.ByteToInt16(ReadBytes(stream, 2), bigEndian));
 }