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