Removes the IList<(Of <(T>)>) item at the specified index.

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public void RemoveAt(
	int index
)
Visual Basic (Declaration)
Public Sub RemoveAt ( _
	index As Integer _
)

Parameters

index
Type: System..::.Int32
The zero-based index of the item to remove.

Implements

IList<(Of <(T>)>)..::.RemoveAt(Int32)

Exceptions

ExceptionCondition
System..::.NotSupportedExceptionThe IList<(Of <(T>)>) is read-only.
System..::.ArgumentOutOfRangeExceptionindex is not a valid index in the IList<(Of <(T>)>).

See Also