3 writes to itemsCollection
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ComboBox.cs (3)
777itemsCollection = new ObjectCollection(this); 2522itemsCollection = null; 3022itemsCollection = null;
26 references to itemsCollection
System.Windows.Forms (26)
winforms\Managed\System\WinForms\ComboBox.cs (26)
776if (itemsCollection == null) { 779return itemsCollection; 1011string[] strings = new string[itemsCollection.Count]; 1012for (int i = 0; i < itemsCollection.Count; i++) { 1013strings[i] = GetItemText(itemsCollection[i]); 1046if (itemsCollection != null) { 1047itemCount = itemsCollection.Count; 1093if (itemsCollection != null) { 1096x = itemsCollection.IndexOf(value); 2076if (itemsCollection == null || itemsCollection.Count == 0) { 2081if (startIndex < -1 || startIndex >= itemsCollection.Count) { 2119if (itemsCollection == null || itemsCollection.Count == 0) { 2124if (startIndex < -1 || startIndex >= itemsCollection.Count) { 2171if (index < 0 || itemsCollection == null || index >= itemsCollection.Count) { 2496if (itemsCollection != null) { 2497foreach (object item in itemsCollection) { 3020ObjectCollection savedItems = itemsCollection; 3186if (itemsCollection != null) { 3187if (itemsCollection.Count == 0) { 3360return s + ", Items.Count: " + ((itemsCollection == null) ? (0).ToString(CultureInfo.CurrentCulture) : itemsCollection.Count.ToString(CultureInfo.CurrentCulture)); 3371int itemCount = (itemsCollection == null) ? 0 : itemsCollection.Count;