4 writes to _controls
System.Web (4)
UI\ControlCollection.cs (4)
77_controls = new Control[_defaultCapacity]; 82_controls = newArray; 125_controls = new Control[_defaultCapacity]; 136_controls = newArray;
25 references to _controls
System.Web (25)
UI\ControlCollection.cs (25)
76if (_controls == null) { 79else if (_size >= _controls.Length) { 80Control[] newArray = new Control[_controls.Length * _growthFactor ]; 81Array.Copy(_controls, newArray, _controls.Length); 87_controls[index] = child; 124if (_controls == null) { 127else if (_size >= _controls.Length) { 129Control[] newArray = new Control[_controls.Length * _growthFactor ]; 131Array.Copy(_controls, newArray, index); 135Array.Copy(_controls, index, newArray, index+1, _size - index); 140Array.Copy(_controls, index, _controls, index + 1, _size - index); 142_controls[index] = child; 156if (_controls != null) { 174if (_controls == null || c == null) 178if (Object.ReferenceEquals(c, _controls[i])) { 219if (_controls == null) 222return Array.IndexOf(_controls, value, 0, _size); 240if (_controls == null) 245Array.Copy(_controls, 0, array, index, _size); 295return _controls[index]; 314Array.Copy(_controls, index + 1, _controls, index, _size - index); 316_controls[_size] = null;