控制台程序的未处理异常我已经用AppDomain.CurrentDomain.UnhandledException捕获了,为什么程序还会停止
6 回答
精慕HU
TA贡献1845条经验 获得超8个赞
这样的:
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { Exception error = (Exception)e.ExceptionObject; Console.WriteLine("MyHandler caught : " + error.Message); }
- 6 回答
- 0 关注
- 497 浏览
添加回答
举报
0/150
提交
取消