2 writes to m_currentRightSource
System.Core (2)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (2)
303m_currentRightSource = rightChild.GetEnumerator(); 347m_currentRightSource = null;
9 references to m_currentRightSource
System.Core (9)
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (9)
281if (m_currentRightSource == null) 305Contract.Assert(m_currentRightSource != null); 315m_currentRightSourceAsOutput = (IEnumerator<TOutput>)(object)m_currentRightSource; 316Contract.Assert(m_currentRightSourceAsOutput == m_currentRightSource, 321if (m_currentRightSource.MoveNext()) 329currentElement = m_selectManyOperator.m_resultSelector(m_mutables.m_currentLeftElement, m_currentRightSource.Current); 346m_currentRightSource.Dispose(); 356if (m_currentRightSource != null) 358m_currentRightSource.Dispose();