1 write to m_childCount
System.Core (1)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (1)
361m_childCount = m_childQueryResults.ElementsCount;
5 references to m_childCount
System.Core (5)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (5)
366get { return m_childCount >= 0; } 373Contract.Assert(m_childCount >= 0); 376return Math.Min(m_childCount, m_takeOrSkipOp.m_count); 380return Math.Max(m_childCount - m_takeOrSkipOp.m_count, 0); 387Contract.Assert(m_childCount >= 0);