ReadBeUInt32() public static method

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

            off += 4;
            return(u);
        }
Exemplo n.º 2
0
 public int PeekBeInt32(uint offset)
 {
     return((int)MemoryArea.ReadBeUInt32(bytes, offset + off));
 }