ReadLeUInt32() public method

public ReadLeUInt32 ( Address addr ) : uint
addr Address
return uint
Ejemplo n.º 1
0
        public uint ReadLeUInt32()
        {
            uint u = MemoryArea.ReadLeUInt32(bytes, (uint)off);

            off += 4;
            return(u);
        }
Ejemplo n.º 2
0
 public int PeekLeInt32(uint offset)
 {
     return((int)MemoryArea.ReadLeUInt32(bytes, offset + off));
 }