System.Windows.Forms.BindingsCollection.RemoveAt C# (CSharp) Method

RemoveAt() protected method

protected RemoveAt ( int index ) : void
index int
return void
		protected internal void RemoveAt(int index) {
			base.List.RemoveAt(index);
			OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, base.List));
		}