获取进程主入口C#

Getting process main entry C#

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

ProcessModule.EntryPoint

// Get the main module associated with 'myProcess'.
myProcessModule = myProcess.MainModule;
IntPtr MainEntry = myProcessModule.EntryPointAddress;