Implemented interface member:
9 references to RemoveAt
System.Windows.Forms (1)
System\Windows\Forms\Controls\ComboBox\ComboBox.ObjectCollection.cs (1)
401RemoveAt(index);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (1)
102_keyComboBox.Items.RemoveAt(0);
System.Windows.Forms.Tests (7)
System\Windows\Forms\Combobox.ObjectCollectionTests.cs (5)
849comboBoxObjectCollection.RemoveAt(0); 871comboBoxObjectCollection.RemoveAt(0); 891Assert.Throws<ArgumentOutOfRangeException>("index", () => comboBoxObjectCollection.RemoveAt(-1)); 908Assert.Throws<ArgumentOutOfRangeException>("index", () => comboBoxObjectCollection.RemoveAt(3)); 929Assert.Throws<ArgumentException>(() => comboBoxObjectCollection.RemoveAt(0));
System\Windows\Forms\ComboBoxTests.cs (2)
2272comboBox.Items.RemoveAt(selectedIndex); 2455comboBox.Items.RemoveAt(index);