Method ProcessMemory.Write(+ 1 overload)
Overload
Copies memory from this process to that process (memory address ProcessMemory.Mem).
public bool Write(void* ptrFrom, int nBytes, int offsetBytes = 0)
Parameters
ptrFrom (void*)
Address of memory in this process. |
nBytes (int)
Number of bytes to copy. |
offsetBytes (int)
Offset in ProcessMemory.Mem. |
Returns
bool
|
Overload(top)
Copies memory from this process to a known address in that process.
public bool Write(nint ptrTo, void* ptrFrom, int nBytes)
Parameters
ptrTo (nint)
Address of memory in that process. |
ptrFrom (void*)
Address of memory in this process. |
nBytes (int)
Number of bytes to copy. |
Returns
bool
|