10 references to CombineSelectors
System.Linq (10)
System\Linq\Select.cs (4)
164new IEnumerableSelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector)); 207new ArraySelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector)); 257new ListSelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector)); 319new IListSelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector));
System\Linq\Select.SpeedOpt.cs (3)
288new RangeSelectIterator<T, TResult2>(_start, _end, CombineSelectors(_selector, selector)); 686new IteratorSelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector)); 886new IListSkipTakeSelectIterator<TSource, TResult2>(_source, CombineSelectors(_selector, selector), _minIndexInclusive, _maxIndexInclusive);
System\Linq\Where.cs (3)
301new ArrayWhereSelectIterator<TSource, TResult2>(_source, _predicate, CombineSelectors(_selector, selector)); 356new ListWhereSelectIterator<TSource, TResult2>(_source, _predicate, CombineSelectors(_selector, selector)); 423new IEnumerableWhereSelectIterator<TSource, TResult2>(_source, _predicate, CombineSelectors(_selector, selector));