TryReadLeUInt64() public method

public TryReadLeUInt64 ( Address address, ulong &dw ) : bool
address Address
dw ulong
return bool
Exemplo n.º 1
0
 public bool TryReadLeUInt64(out ulong value)
 {
     if (!MemoryArea.TryReadLeUInt64(this.bytes, off, out value))
     {
         return(false);
     }
     off += 8;
     return(true);
 }