标签: c# .net vb.net
是否可以在AppDomain.CurrentDomain.UnhandledException回调中处理异常? 我想做以下事情:
可以这样做吗?
答案 0 :(得分:2)
您可以使用Application.SetUnhandledExceptionMode方法。
Application.SetUnhandledExceptionMode
请在这里查看:User Friendly Exception Handling。
答案 1 :(得分:2)
希望此链接有所帮助:
http://www.switchonthecode.com/tutorials/csharp-tutorial-dealing-with-unhandled-exceptions
如代码所示,只需听取异常并在发生时执行您想要的操作。