-1

我目前正在使用 C# 制作内存扫描仪。因此,我想确定进程的主内存入口点(通常0x400000x32)。我已经打开了pHandle所有访问权限。如何获取要扫描的起始地址?

4

1 回答 1

-1

ProcessModule.EntryPoint

// Get the main module associated with 'myProcess'.
myProcessModule = myProcess.MainModule;
IntPtr MainEntry = myProcessModule.EntryPointAddress;
于 2015-12-16T10:44:08.103 回答