System.Windows.Forms.ListBox.IntegerCollection.RemoveAt C# (CSharp) Méthode

RemoveAt() public méthode

public RemoveAt ( int index ) : void
index int
Résultat void
			public void RemoveAt (int index)
			{
				if (index < 0)
					throw new IndexOutOfRangeException ();

				list.RemoveAt (index);
				list.Sort ();
				owner.CalculateTabStops ();
			}
			#endregion