2009年10月27日
摘要: 常见问题:Ilist <> 本身只是一个泛型接口, 既然是接口当然不能实例化,只能用如下方法 IList <Class1> IList11 =new List <Class1>(); 但是为什么要这么用呢,为什么不直接用List: List <Class1> List11 =new List <Class1>(); 第一种用法有什么好处。... 阅读全文
posted @ 2009-10-27 20:04 李辉明 阅读(1835) 评论(2) 推荐(0) 编辑