[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

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

Namespace: net.esper.compat
Assembly:   NEsper (in NEsper.dll)

Syntax

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

Parameters

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

Exceptions

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