2 writes to m_array
System.Core (2)
System\Linq\Parallel\Utils\GrowingArray.cs (2)
30
m_array
= new T[DEFAULT_ARRAY_SIZE];
64
m_array
= array2;
8 references to m_array
System.Core (8)
System\Linq\Parallel\Utils\GrowingArray.cs (8)
41
get { return
m_array
; }
51
if (m_count >=
m_array
.Length)
53
GrowArray(2 *
m_array
.Length);
55
m_array
[m_count++] = element;
60
Contract.Assert(newSize >
m_array
.Length);
63
m_array
.CopyTo(array2, 0);
70
if (m_count + otherCount >
m_array
.Length)
76
Array.Copy(otherArray, 0,
m_array
, m_count, otherCount);