com.calitha.commons.IntegerList.RemoveAt C# (CSharp) Метод

RemoveAt() публичный Метод

Removes the element at the specified index of the list.
public RemoveAt ( int index ) : void
index int The zero-based index of the element to remove.
Результат void
		public void RemoveAt(int index)
		{
			list.RemoveAt(index);
		}