5 references to GetEnumerator
System.Linq.Parallel (5)
System\Linq\Parallel\QueryOperators\Unary\ElementAtQueryOperator.cs (1)
147using (IEnumerator<TSource> e = GetEnumerator(ParallelMergeOptions.FullyBuffered))
System\Linq\ParallelEnumerable.cs (4)
4879input = asOperator.GetEnumerator(ParallelMergeOptions.FullyBuffered); 5153IEnumerator<IGrouping<TKey, TSource>> input = (op == null) ? groupings.GetEnumerator() : op.GetEnumerator(ParallelMergeOptions.FullyBuffered); 5240IEnumerator<IGrouping<TKey, TElement>> input = (op == null) ? groupings.GetEnumerator() : op.GetEnumerator(ParallelMergeOptions.FullyBuffered); 5336using (IEnumerator<TSource> e = queryOp.GetEnumerator(ParallelMergeOptions.FullyBuffered))