ReadBeUInt16() public static method

public static ReadBeUInt16 ( byte abImage, long off ) : ushort
abImage byte
off long
return ushort
Exemplo n.º 1
0
        public ushort ReadBeUInt16()
        {
            ushort u = MemoryArea.ReadBeUInt16(bytes, (uint)off);

            off += 2;
            return(u);
        }
Exemplo n.º 2
0
 public short PeekBeInt16(uint offset)
 {
     return((short)MemoryArea.ReadBeUInt16(bytes, offset + (uint)off));
 }
Exemplo n.º 3
0
 public ushort PeekBeUInt16(int offset)
 {
     return(MemoryArea.ReadBeUInt16(bytes, offset + (uint)off));
 }