1 write to predicate
System.Core (1)
System\Linq\Enumerable.cs (1)
216this.predicate = predicate;
4 references to predicate
System.Core (4)
System\Linq\Enumerable.cs (4)
220return new WhereListIterator<TSource>(source, predicate); 232if (predicate(item)) { 244return new WhereSelectListIterator<TSource, TResult>(source, predicate, selector); 248return new WhereListIterator<TSource>(source, CombinePredicates(this.predicate, predicate));