第 N 次执行一行时中断
有没有办法告诉 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅此 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
.您还可以尝试设置计数器变量,然后使用条件断点并
调用:
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.
是的,如果您添加条件断点并使用断点命中计数选项。
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