2 writes to _currentRightSource
System.Linq.Parallel (2)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (2)
429
_currentRightSource
= rightChild.GetEnumerator();
474
_currentRightSource
= null;
8 references to _currentRightSource
System.Linq.Parallel (8)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (8)
406
if (
_currentRightSource
== null)
431
Debug.Assert(
_currentRightSource
!= null);
441
_currentRightSourceAsOutput = (IEnumerator<TOutput>)
_currentRightSource
;
442
Debug.Assert(_currentRightSourceAsOutput ==
_currentRightSource
,
447
if (
_currentRightSource
.MoveNext())
456
currentElement = _selectManyOperator._resultSelector(_mutables._currentLeftElement,
_currentRightSource
.Current);
473
_currentRightSource
.Dispose();
483
_currentRightSource
?.Dispose();