Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 C# 制作内存扫描仪。因此,我想确定进程的主内存入口点(通常0x400000为x32)。我已经打开了pHandle所有访问权限。如何获取要扫描的起始地址?
0x400000
x32
pHandle
ProcessModule.EntryPoint
// Get the main module associated with 'myProcess'. myProcessModule = myProcess.MainModule; IntPtr MainEntry = myProcessModule.EntryPointAddress;