I have an address that I would like to modify. I have the process. I have the new value. So now what?
// My Process
var p = Process.GetProcessesByName("ePSXe").FirstOrDefault();
// Address
var addr = 0x00A66E11;
// Value
var val = 0x63;
How can I write 0x63
(99) to this address on another process memory?
@Harvey, from your answer I dug up and found a lot:
Open, Close and Write signatures:
Flags:
Make my life easier method:
Writing into another process memory: