3 writes to m_count
System.Core (3)
System\Linq\Parallel\Utils\GrowingArray.cs (3)
31m_count = 0; 55m_array[m_count++] = element; 77m_count += otherCount;
5 references to m_count
System.Core (5)
System\Linq\Parallel\Utils\GrowingArray.cs (5)
46get { return m_count; } 51if (m_count >= m_array.Length) 70if (m_count + otherCount > m_array.Length) 72GrowArray(m_count + otherCount); 76Array.Copy(otherArray, 0, m_array, m_count, otherCount);