摘要: 1. 定义表示定义一组条件并确定指定对象是否符合这些条件的方法。public delegate bool Predicate<T>( T obj);2. 示例using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace PredicateApp{ class Pro... 阅读全文
posted @ 2010-06-08 17:49 b0b0 阅读(487) 评论(0) 推荐(0)