1 write to m_leftChildCount
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (1)
266m_leftChildCount = leftChildQueryResults.ElementsCount;
4 references to m_leftChildCount
System.Core (4)
System\Linq\Parallel\QueryOperators\Unary\ConcatQueryOperator.cs (4)
279Contract.Assert(m_leftChildCount >= 0 && m_rightChildCount >= 0); 280return m_leftChildCount + m_rightChildCount; 286if (index < m_leftChildCount) 292return m_rightChildQueryResults.GetElement(index - m_leftChildCount);