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
ファイル: ImageReader.cs プロジェクト: tgiphil/reko
 public ulong PeekLeUInt64(int offset)
 {
     return(MemoryArea.ReadLeUInt64(bytes, off + offset));
 }