Пример #1
0
        public ulong ReadLeUInt64()
        {
            ulong u = LoadedImage.ReadLeUInt64(bytes, off);

            off += 8;
            return(u);
        }
Пример #2
0
 public long PeekLeInt64(uint offset)
 {
     return((long)LoadedImage.ReadLeUInt64(bytes, off));
 }