第 N 次执行一行时中断

发布于 2024-11-05 01:07:11 字数 98 浏览 1 评论 0原文

有没有办法告诉 Visual Studio 调试器“在第 N 次执行时在该行处中断,而不是之前”(其中 N 是大于 1 的整数)?
(仅供参考,我使用的是 C# 编程语言。)

Is there a way to tell the Visual Studio debugger, "break at this line the Nth time it gets executed, not before" (where N is an integer greater than 1)?
(Just for information, I'm using the C# programming language.)

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

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

发布评论

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

评论(3

淡莣 2024-11-12 01:07:11

请参阅 MSDN 文章 - 如何:指定点击计数。

简而言之 - 在断点窗口中右键单击断点并选择Hit Count

See this MSDN article - How to: Specify a Hit Count.

In short - in the breakpoints window you right click the breakpoint and select Hit Count.

愁以何悠 2024-11-12 01:07:11

您还可以尝试设置计数器变量,然后使用条件断点并

调用: System.Diagnostics.Debugger.Break();

在条件下

You also may try setting up a counter variable and then use a conditional break point and call:

System.Diagnostics.Debugger.Break();

under a condition.

落墨 2024-11-12 01:07:11

是的,如果您添加条件断点并使用断点命中计数选项。

http://msdn.microsoft.com/en-我们/library/aa290719(v=vs.71).aspx

Yes, if you add a conditional breakpoint and use the breakpoint hit count option.

http://msdn.microsoft.com/en-us/library/aa290719(v=vs.71).aspx

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