摘要: C#异常处理一 : catch 之后是否会跳出异常 答案:不会using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Test{ class Program { static void Main(string[] args) { int sum = 30; for (int i = 0; i < 30; i++) { try ... 阅读全文
posted @ 2012-05-11 10:13 水目之痕 阅读(207) 评论(0) 推荐(0)