ReadLeUInt64() public static method

public static ReadLeUInt64 ( byte img, long off ) : ulong
img byte
off long
return ulong
示例#1
0
        public ulong ReadLeUInt64()
        {
            ulong u = MemoryArea.ReadLeUInt64(bytes, off);

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