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.
我正在使用 Visual Studio 2010。我正在查看项目属性,但我在哪里提到要打开哪些外部程序来启动 DLL 的调试?
配置属性 -> 调试 -> 命令
你调试一个进程。
您可以单步执行任何具有可用符号的代码,无论该代码是在 .exe 中还是在 .exe 调用的 .dll 中。
您可能遇到的主要问题是调试“托管代码”(即 .Net dll 或 exe 中的字节代码)与“非托管代码”(实际的 Intel x86 指令)。如果您的项目包含两种二进制文件的组合,那么您需要进行“混合模式调试”。
这里有更多信息:
http://msdn.microsoft.com/en-us/library/sc65sadd