Implemented interface member:
9 references to RemoveAt
System.Windows.Forms (3)
System\Windows\Forms\Control.ControlCollection.cs (2)
333RemoveAt(index); 389RemoveAt(Count - 1);
System\Windows\Forms\Controls\TabControl\TabControl.TabPageCollection.cs (1)
334public void RemoveAt(int index) => _owner.Controls.RemoveAt(index);
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollection.cs (1)
76_realCollection.RemoveAt(i);
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2221_realCollection.RemoveAt(i);
System.Windows.Forms.Tests (4)
System\Windows\Forms\ControlTests.ControlCollection.cs (4)
2871collection.RemoveAt(1); 2882collection.RemoveAt(0); 2905Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.RemoveAt(index)); 2920Assert.Throws<ArgumentOutOfRangeException>("index", () => collection.RemoveAt(index));