ReadLeUInt64() 공개 정적인 메소드

public static ReadLeUInt64 ( byte img, long off ) : ulong
img byte
off long
리턴 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));
 }