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)
847comboBoxObjectCollection.RemoveAt(0); 869comboBoxObjectCollection.RemoveAt(0); 889Assert.Throws<ArgumentOutOfRangeException>("index", () => comboBoxObjectCollection.RemoveAt(-1)); 906Assert.Throws<ArgumentOutOfRangeException>("index", () => comboBoxObjectCollection.RemoveAt(3)); 927Assert.Throws<ArgumentException>(() => comboBoxObjectCollection.RemoveAt(0));
System\Windows\Forms\ComboBoxTests.cs (2)
2271comboBox.Items.RemoveAt(selectedIndex); 2454comboBox.Items.RemoveAt(index);