随笔分类 -  .Net

.Net C#
try{...} catch {...} finally{...} 各种情况代码的执行情况
摘要:1 try 2 { 3 int i = Convert.ToInt32(Console.ReadLine()); 4 Console.WriteLine("in the 'try'"); 5 } 6 catch 7 { 8 Console.WriteLine("in the 'catch'"); 9 }10 finally11 ... 阅读全文
posted @ 2013-06-30 21:41 瑾秀年华 阅读(488) 评论(1) 推荐(0)