5 references to GetEnumerator
System.Core (5)
System\Linq\Parallel\QueryOperators\Unary\ElementAtQueryOperator.cs (1)
150using (IEnumerator<TSource> e = GetEnumerator(ParallelMergeOptions.FullyBuffered))
System\Linq\ParallelEnumerable.cs (4)
4918input = asOperator.GetEnumerator(ParallelMergeOptions.FullyBuffered); 5202IEnumerator<IGrouping<TKey, TSource>> input = (op == null) ? groupings.GetEnumerator() : op.GetEnumerator(ParallelMergeOptions.FullyBuffered); 5289IEnumerator<IGrouping<TKey, TElement>> input = (op == null) ? groupings.GetEnumerator() : op.GetEnumerator(ParallelMergeOptions.FullyBuffered); 5383using (IEnumerator<TSource> e = queryOp.GetEnumerator(ParallelMergeOptions.FullyBuffered))