ReadBeUInt64() 공개 정적인 메소드

public static ReadBeUInt64 ( byte abImage, long off ) : ulong
abImage byte
off long
리턴 ulong
예제 #1
0
        public ulong ReadBeUInt64()
        {
            ulong u = MemoryArea.ReadBeUInt64(bytes, off);

            off += 8;
            return(u);
        }
예제 #2
0
 public long PeekBeInt64(uint offset)
 {
     return((long)MemoryArea.ReadBeUInt64(bytes, off));
 }
예제 #3
0
파일: ImageReader.cs 프로젝트: tgiphil/reko
 public ulong PeekBeUInt64(int offset)
 {
     return(MemoryArea.ReadBeUInt64(bytes, off + offset));
 }