不能catch Fatal的exception
Clemens Vasters - Are you catching falling knives?里给了一个判断C#的exception是不是fatal的代码,可以参考参考。 public static bool IsFatal(this Exception exception){ while (exception != null) { if (...