VirtualCollectionTRemoveAt Method

Removes the element at the specified index of the VirtualCollectionT.
Calls the overridable RemoveItem method.

Definition

Namespace: KGySoft.Collections.ObjectModel
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
C#
public void RemoveAt(
	int index
)

Parameters

index  Int32
The zero-based index of the element to remove.

Implements

IListTRemoveAt(Int32)
IListRemoveAt(Int32)

Exceptions

NotSupportedExceptionIsReadOnly returns .
ArgumentOutOfRangeExceptionindex is less than zero, or is equal to or greater than Count.

See Also