摘要: namespace Test{ class Program { private static List<Student> list1 = new List<Student>(); //声明一个用于放置初始值的集合 注:必须声明List类型而不是IList接口类型 private static List<Student> list2 = new List<Student>(); //用户存放筛选结果 static void Main(string[] args) { //声明实例化student对象 Student stu1 = new Stude 阅读全文
posted @ 2011-06-17 17:36 Frida- 阅读(522) 评论(0) 推荐(0) 编辑