Visual Studio 2010 不要在断点中调试
我正在开发一个项目,突然调试忽略了我的断点并且不进行调试,
I'm working on a project and suddenly the debug ignore my breakpoints and doesn't debug,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保调试工具栏附近的下拉列表显示“调试”而不是“发布”。
Make sure the dropdown near on the debug toolbar shows "Debug" and not "Release".
如果您需要在“RELEASE”模式下“击中”断点,请转到:
工具 ->选项->调试->常规和取消选中“仅我的代码”选项,以便加载符号并实际命中断点;)
In case you need to "hit" the break point in "RELEASE" mode go to:
Tools -> Options -> Debugging -> General and UN-CHECK "Just my code" option, in order to enable loading symbols and actualy hitting a break point ;)
有时 Visual Studio 会感到很困惑。我发现重新启动 Visual Studio、取消设置/重置断点以及注释掉发生故障的位置都有助于让 Visual Studio 再次工作。
Sometimes Visual Studio just gets all confused. I've found restarting Visual Studio, unsetting/resetting breakpoints, and commenting out the places where it's falling over all help to trip Visual Studio into working again.