使用 WatiN 框架时如何在 Visual Studio 中正确调试?

发布于 2024-12-07 17:15:57 字数 124 浏览 0 评论 0 原文

我一直在尝试调试我的程序,该程序大约有数百行代码,我一直在努力正确调试程序, 程序的每个控制都会留下块,每当我按 f11 查看代码的每个步骤时,都会从不同的点开始,

是否有更好的方法可以通过使用其他工具来正确进行调试。

I have being trying to debug my program which is around couple of hundreds lines of code, I have been trying hard to debug the program properly,
each and every control of the program leaves blocks, starts from different point whenever I press f11 to see each and every step of my code,

Is there is any better approach to do debugging properly by using some other tools.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧时浪漫 2024-12-14 17:15:57

可以让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.

記柔刀 2024-12-14 17:15:57

我个人很喜欢这个关于调试的系列文章:
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 :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文