是否可以在 .Net 程序中检测到它正在调试器中停止/单步执行?
这是为了解决有时困扰我调试的问题。我正在开发的程序会检测用户在 UI(鼠标 + 键盘)中的不活动情况,如果用户在可配置的时间范围内没有活动,则会超时。我遇到的问题是,即使我正在调试程序,用户不活动也会被计算在内,并且我希望能够从用户不活动时间中减去在调试器中花费的时间,因此程序不会计时当我调试它时。
This is to address an issue that bothers my debugging at times. The program I'm working on detects user inactivity in the UI (mouse + keyboard) and time-outs if the user has no activity over a configurable time span. The problem I'm having is that the user inactivity is counted even if I'm debugging the program and I would like to have the ability to substract the time I spend in the debugger from the user inactivity time, so the program does not time out while I am debugging it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在应用程序的
DEBUG
版本中禁用超时代码。You could just disable the timeout code in the
DEBUG
builds of your application.您可以使用编译器指令。
http://msdn.microsoft.com/en-us/library/4y6tbswk.aspx
You could use compiler directives.
http://msdn.microsoft.com/en-us/library/4y6tbswk.aspx