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

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