ReadLeUInt64() public static method

public static ReadLeUInt64 ( byte img, long off ) : ulong
img byte
off long
return ulong
Exemplo n.º 1
0
        public ulong ReadLeUInt64()
        {
            ulong u = MemoryArea.ReadLeUInt64(bytes, off);

            off += 8;
            return(u);
        }
Exemplo n.º 2
0
 public long PeekLeInt64(uint offset)
 {
     return((long)MemoryArea.ReadLeUInt64(bytes, off));
 }
Exemplo n.º 3
0
 public ulong PeekLeUInt64(int offset)
 {
     return(MemoryArea.ReadLeUInt64(bytes, off + offset));
 }