2 writes to _currentRightSource
System.Linq.Parallel (2)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (2)
300
_currentRightSource
= rightChild.GetEnumerator();
345
_currentRightSource
= null;
8 references to _currentRightSource
System.Linq.Parallel (8)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (8)
277
if (
_currentRightSource
== null)
302
Debug.Assert(
_currentRightSource
!= null);
312
_currentRightSourceAsOutput = (IEnumerator<TOutput>)
_currentRightSource
;
313
Debug.Assert(_currentRightSourceAsOutput ==
_currentRightSource
,
318
if (
_currentRightSource
.MoveNext())
327
currentElement = _selectManyOperator._resultSelector(_mutables._currentLeftElement,
_currentRightSource
.Current);
344
_currentRightSource
.Dispose();
354
_currentRightSource
?.Dispose();