3 writes to _innerArray
System.Windows.Forms (3)
System\Windows\Forms\Controls\ListBoxes\ListBox.IntegerCollection.cs (3)
84_innerArray = null; 210_innerArray = new int[Math.Max(elements, 4)]; 217_innerArray = newEntries;
13 references to _innerArray
System.Windows.Forms (13)
System\Windows\Forms\Controls\ListBoxes\ListBox.IntegerCollection.cs (13)
91if (_innerArray is not null) 93index = Array.IndexOf(_innerArray, item); 130_innerArray![_count++] = item; 131Array.Sort(_innerArray, 0, _count); 208if (_innerArray is null) 212else if (_count + elements >= _innerArray.Length) 214int newLength = Math.Max(_innerArray.Length * 2, _innerArray.Length + elements); 216_innerArray.CopyTo(newEntries, 0); 271_innerArray![i] = _innerArray[i + 1]; 285return _innerArray![index]; 293_innerArray![index] = value;