TryReadByte() public method

public TryReadByte ( Address addr, byte &b ) : bool
addr Address
b byte
return bool
Exemplo n.º 1
0
 public bool TryPeekByte(int offset, out byte value)
 {
     return(MemoryArea.TryReadByte(bytes, offset + off, out value));
 }