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.
Namespace: KGySoft.Collections.ObjectModelAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
protected virtual T GetItem(
int index
)
Protected Overridable Function GetItem (
index As Integer
) As T
protected:
virtual T GetItem(
int index
)
abstract GetItem :
index : int -> 'T
override GetItem :
index : int -> 'T
- index Int32
- The zero-based index of the element to get.
TThe element at the specified
index.