VirtualCollectionTGetItem Method

Gets the element at the specified index.
The base implementation gets the element at the specified index by calling the indexer of the underlying collection.

Definition

Namespace: KGySoft.Collections.ObjectModel
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
protected virtual T GetItem(
	int index
)

Parameters

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

Return Value

T
The element at the specified index.

See Also