IList<T>.ExtractAt Method

Definition

Removes the item at the specified index without triggering lifetime management for objects.

Delphi
function ExtractAt(index: Integer): T

Parameters

index
Integer

The zero-based index of the item to remove.

Returns

T

The element that was removed from the list.

Exceptions

index is not a valid index in the list.