我希望我的程序在每次运行表单时执行特定的功能。 该函数将获取进程的baseAdress,因此每次加载程序时都应调用它。 目前的代码:
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Adicionar());
if (getmodule())
{
MessageBox.Show(baseAdress);
}
}
static bool getmodule(){ .... }
怎么可能做到?我想可能在Form构造函数中使用它?但我不知道该怎么做。
还有 会这个代码
d.Adress = (0x6C7FC + baseAdress + 0xA82020);
返回一个有效的值,我可以写(到内存)/读?