Hi,
这些信息是来自Visual
Studio调试器的信息性消息,列出了已加载的各种可执行文件和动态链接库(DLL),以及是否找到了包含调试符号信息的PDB(程序数据库)文件。PDB是Visual
Studio使用的调试信息文件,例子中的SysWOW64\xxx.dll是系统DLL,您没有调试符号。通常,您的应用程序的PDB文件都会找到,但运行时和系统DLL的PDB不会。除非您计划调试系统DLL,否则您不需要其PDB文件,应忽略这些消息。
如果要忽略这些消息,Tools -> Options -> Debugging
-> Output Window -> Module Load Messages -> Off,这将不显示你正常项目运行。
当然,我们也可以Tools->Options->Debugging->Symbols去check "Microsoft
Symbol Servers", VS会自动下载这些modules,换句话说,下载需要时间,会让debug显得更慢些。
你可以看看这个类似的问题。
MSDN Community Support Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any
compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com