Click or drag to resize
ArrayListRemoveAt Method
Removes the element at the specified index of the ArrayList.

Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public virtual void RemoveAt(
	int index
)

Parameters

index
Type: SystemInt32
The zero-based index of the element to remove.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero.-or- index is equal to or greater than Count.
NotSupportedExceptionThe ArrayList is read-only.-or- The ArrayList has a fixed size.
See Also