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