使用 WatiN 框架时如何在 Visual Studio 中正确调试?
我一直在尝试调试我的程序,该程序大约有数百行代码,我一直在努力正确调试程序, 程序的每个控制都会留下块,每当我按 f11 查看代码的每个步骤时,都会从不同的点开始,
是否有更好的方法可以通过使用其他工具来正确进行调试。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以让VS在抛出异常时停止 - 调试 ->例外情况。然后勾选“抛出”CLR 异常。 http://msdn.microsoft.com/en-us/library/d14azbfh.aspx
您还可以针对代码中的行设置断点。只需单击左边距或转到“调试”->“调试”即可。窗口 ->断点。
You can get VS to stop when exceptions are thrown - Debug -> Exceptions. Then tick 'Thrown' for CLR Exceptions. http://msdn.microsoft.com/en-us/library/d14azbfh.aspx
You can also put Breakpoints against lines in code. Just click in the left margin or go to Debug -> Windows -> Breakpoints.
我个人很喜欢这个关于调试的系列文章:
http://blogs.msdn.com/b/brunoterkaly/archive/2009/02/08/the-art-of-debugging-a-developer-s-best-friend-intro-lesson- 1.aspx
但网上还有更多的图例。值得研究。当我开始编程时,我了解到熟悉调试器可以节省大量时间:)
I personally like this series of articles about debugging:
http://blogs.msdn.com/b/brunoterkaly/archive/2009/02/08/the-art-of-debugging-a-developer-s-best-friend-intro-lesson-1.aspx
But there is a lot more turorials on the net. It is worth researching. When I started programming, I learned that knowing your debugger well can save a lot of time :)