2 writes to m_currentRightSource
System.Core (2)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (2)
433m_currentRightSource = rightChild.GetEnumerator(); 477m_currentRightSource = null;
9 references to m_currentRightSource
System.Core (9)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (9)
411if (m_currentRightSource == null) 435Contract.Assert(m_currentRightSource != null); 445m_currentRightSourceAsOutput = (IEnumerator<TOutput>)(object)m_currentRightSource; 446Contract.Assert(m_currentRightSourceAsOutput == m_currentRightSource, 451if (m_currentRightSource.MoveNext()) 459currentElement = m_selectManyOperator.m_resultSelector(m_mutables.m_currentLeftElement, m_currentRightSource.Current); 476m_currentRightSource.Dispose(); 486if (m_currentRightSource != null) 488m_currentRightSource.Dispose();