此实用工具显示所有导出的函数列表和他们指定的DLL文件的虚拟内存地址。您可以轻松地复制所需函数的内存地址,粘贴到调试器,并为这个内存地址断点。当这种功能被调用时,调试程序将停止在这一职能的开始。 For example: If you want to break each time that a message box is going to be displayed, simply put breakpoints on the memory addresses of message-box
为了能用上原来的C++代码,只好研究下从C# 中调用DLL 首先必须要有一个声明,使用的是DllImport关键字: 包含DllImport所在的名字空间 using System.Runtime.InteropServices; public class XXXX{ [DllImport(“MyDLL.dll")] public static extern int mySum (int a,int b); } [DllImport(“MyDLL.dll")] public static ex