Ejemplo n.º 1
0
        public UInt16 ReadUInt16()
        {
            byte[] bytes  = ReadBytes(2);
            UInt16 result = ByteUtilities.ToUInt16(bytes);

            return(result);
        }
Ejemplo n.º 2
0
        public ushort ReadUInt16()
        {
            var bytes = ReadBytes(2);

            return(ByteUtilities.ToUInt16(bytes));
        }