摘要: 延迟操作符:凡是IEnumerable<T>或IOrderedEnumerable<T>类型的值的操作符都属于延迟操作符。1.限定操作符Where作用:用于将筛选出来的元素放到一个序列中原型 public static IEnumerable<T> Where<T>( this IEnumerable<T> source, Func<T,bool> predicate); public static IEnumerable<T> Where<T>( this IEnumerable<T> 阅读全文