Removes the item at the specified index.
Syntax
'Declaration
Public Overridable Sub RemoveAt( _
ByVal As System.Integer _
)
'Usage
Dim instance As NotifyCollectionBase(Of T)
Dim index As System.Integer
instance.RemoveAt(index)
public virtual void RemoveAt(
System.int
)
Parameters
- index
- The zero-based index of the item to remove.
Exceptions
Exception | Description |
System.ArgumentOutOfRangeException | is not a valid index in the collection. |
System.NotSupportedException | The collection is read-only. |
See Also