Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

ListBase<(Of <(<'T>)>)>..::..RemoveAt Method

This method must be overridden by the derived class to remove the item at the given index.

Namespace:  Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax


public void RemoveAt(
	int index
)
Public Sub RemoveAt ( _
	index As Integer _
)
public:
void RemoveAt(
	int^ index
)

Parameters

index
Type: Int32
The index in the list to remove the item at. The first item in the list has index 0.

Exceptions


ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero or greater than or equal to Count.