本文介绍了“mscorlib.pdb 未加载"但 mscorlib.dll 没有丢失的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 VS2012 中运行我的应用程序,但出现运行时错误;
I am running my application in VS2012 and I am getting a runtime error;
当我查看原始位置"时,我看到的是 mscorlib.dll,而不是 mscorlib.pdb.
When I look in the "Original Location" I see mscorlib.dll, but not mscorlib.pdb.
为什么会发生这种情况,我该如何解决?
Why is this happening and how do I fix it?
推荐答案
转到工具、选项、调试、常规、启用仅我的代码
Goto Tools, Options, Debugging, General, Enable Just My Code
这将阻止调试器尝试在内部 .NET Framework 程序集上启动.
This will prevent the debugger from trying to launch on a Internal .NET Framework Assembly.
这篇关于“mscorlib.pdb 未加载"但 mscorlib.dll 没有丢失的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!