[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: NEsper (in NEsper.dll)
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
Exception | Condition |
---|---|
System.NotSupportedException | The IList<(Of T>) is read-only. |
System.ArgumentOutOfRangeException | index is not a valid index in the IList<(Of T>). |