ReadBeUInt16() public static méthode

public static ReadBeUInt16 ( byte abImage, long off ) : ushort
abImage byte
off long
Résultat ushort
Exemple #1
0
        public ushort ReadBeUInt16()
        {
            ushort u = MemoryArea.ReadBeUInt16(bytes, (uint)off);

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