摘要: static void Main(string[] args) { try { ThrowException1(); // line 19 } catch (Exception x) { Console.WriteLine("Exception 1:"); Console.WriteLine(x.StackTrace); } try { ThrowException2(); // line 25 } catch (Exception x) { Console.WriteLine("Exception 2:"); Console.WriteLine(x.S 阅读全文
posted @ 2011-04-18 10:04 reagent 阅读(246) 评论(1) 推荐(0) 编辑