强制 ASP.NET 断言抛出异常?
我的断言不会生成消息框,有时它们会发送一条消息来调试输出并结束线程,而不会给我更积极的通知。如何强制抛出所有 Debug.Asserts,以便我知道我看到了它们?
My asserts aren't generating message boxes, sometimes they send a message to debug output and end the thread without giving me a more aggressive notification. How can I force all my Debug.Asserts to just throw, so I know that I see them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们创建了自己的抛出断言。
We created our own asserts that throw.
如果您没有在
部分中使用
禁用它,它应该抛出。It should throw if you haven't disabled it using
<assert assertuienabled="false"/>
in<system.diagnostics>
section.