示例#1
0
        public uint ReadLeUInt32()
        {
            uint u = ByteMemoryArea.ReadLeUInt32(bytes, (uint)off);

            off += 4;
            return(u);
        }
示例#2
0
 public int PeekLeInt32(int offset)
 {
     return((int)ByteMemoryArea.ReadLeUInt32(bytes, offset + off));
 }