TryReadLeUInt32() public method

public TryReadLeUInt32 ( Address address, uint &dw ) : bool
address Address
dw uint
return bool
Beispiel #1
0
 public bool TryReadLeUInt32(out uint ui32)
 {
     if (!MemoryArea.TryReadLeUInt32(this.bytes, (uint)off, out ui32))
     {
         return(false);
     }
     off += 4;
     return(true);
 }
Beispiel #2
0
 public bool TryPeekLeUInt32(int offset, out uint value)
 {
     return(MemoryArea.TryReadLeUInt32(bytes, offset + off, out value));
 }