摘要:
简单的 Where,实现可能如下:public static List<T> Where (this List<T> list,委托 delegate){ List<T> tmpList = new List<T>(); foreach( T p in list){ if(delegate(p)){tmpList.add(p); } } return... 阅读全文
posted @ 2008-03-27 17:46
破甲
阅读(954)
评论(0)
推荐(0)