CircularListTItem Property

Gets or sets the element at the specified index.

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
C#
public T this[
	int index
] { get; set; }

Parameters

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

Return Value

T
The element at the specified index.

Implements

IListTItemInt32
IReadOnlyListTItemInt32

Exceptions

ArgumentOutOfRangeExceptionindex is less than zero or greater or equal to Count.

See Also