RemoveAt Method
Removes the IList(T) item at the specified index.
Definition
Namespace: Avalonia.Styling
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
public void RemoveAt(
int index
)
Public Sub RemoveAt (
index As Integer
)
abstract RemoveAt :
index : int -> unit
override RemoveAt :
index : int -> unit
Parameters
- Int32
- The zero-based index of the item to remove.
Implements
IList(T).RemoveAt(Int32)Exceptions
ArgumentOutOfRangeException | index is not a valid index in the IList(T). |
NotSupportedException | The IList(T) is read-only. |