Can someone explain what this means? I don't really like typing stuff that I don't understand =/
PHP Code:
[DllImport("kernel32.dll",SetLastError = true)]
static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte [] lpBuffer, uint nSize, out int lpNumberOfBytesWritten);
All I know:Imports kernel32.dll
intPtr=Pointer
I also know what static extern bool means
The rest of it though...No clue...
I have a book on C#, but it is for beginners, so it doesn't have Reading/Writing process memory.
I mean like. When I call the function. What do I type for each of those?