1 write to predicate
System.Core (1)
System\Linq\Enumerable.cs (1)
177this.predicate = predicate;
4 references to predicate
System.Core (4)
System\Linq\Enumerable.cs (4)
181return new WhereArrayIterator<TSource>(source, predicate); 189if (predicate(item)) { 200return new WhereSelectArrayIterator<TSource, TResult>(source, predicate, selector); 204return new WhereArrayIterator<TSource>(source, CombinePredicates(this.predicate, predicate));