public UInt16 ReadUInt16() { byte[] bytes = ReadBytes(2); UInt16 result = ByteUtilities.ToUInt16(bytes); return(result); }
public ushort ReadUInt16() { var bytes = ReadBytes(2); return(ByteUtilities.ToUInt16(bytes)); }