在 Visual Studio 2010 中如何调试类
当我在类中设置断点然后访问方法时,调试器不会命中断点。调试类的最佳方法是什么?
When I set a breakpoint in a class then access a method, debugger does not hit breakpoint. What would be best way to debug a class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能希望发布该方法。我的第一个想法是确保您在调试模式下编译,而不是发布模式。
You may wish to post the method. My 1st thought is to make sure you're compiling in Debug mode, not release.
首先确保您已在调试模式下编译解决方案(选择“调试”作为解决方案配置)。然后确保您正在调试模式下运行(按 F5 或从菜单中选择“调试|开始调试”)。
如果已完成上述操作,则在正在调用的方法中较早地设置断点。如果没有看到您的代码,就无法更具体。
First be sure that you have compiled your solution in debug mode (select Debug as your solution configuration). Then make sure that you are running in debug mode (press F5 or from the menu select Debug|Start Debugging).
If the above have been done then set the breakpoint earlier in the method that is being called. Can't be more specific without seeing your code.