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

            off += 4;
            return(u);
        }
Пример #2
0
 public int PeekLeInt32(uint offset)
 {
     return((int)LoadedImage.ReadLeUInt32(bytes, offset + off));
 }