如何捕获 C# .NETMF 4.0 中未处理的异常?
有人知道如何在 C# .NETMF 4.0 中为未处理的异常注册事件处理程序吗?谷歌搜索没有发现任何结果。
谢谢!
Anyone know how to register an event handler for unhandled exceptions in C# .NETMF 4.0? A Google search reveals nothing.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您指的是 .NET 4,那么 AppDomain.UnhandledException 事件将为您提供清理但不处理异常的机会。
http://msdn.microsoft.com/en-us/库/system.appdomain.unhandledException.aspx
If you mean .NET 4 then AppDomain.UnhandledException event will give you a chance to clean up but not handle the exception.
http://msdn.microsoft.com/en-us/library/system.appdomain.unhandledexception.aspx