Vector<T>.Item[Int32] Property

Definition

Gets the element at a specified index.

public:
 property T default[int] { T get(int index); };
public T this[int index] { get; }
member this.Item(int) : 'T
member this.Item(int) : 'T
Default Public ReadOnly Property Item(index As Integer) As T

Parameters

index
Int32

The index of the element to return.

Property Value

T

The element at index index.

Exceptions

index is less than zero.

-or-

index is greater than or equal to Count.

.NET 5 and later: Type T is not supported.

index was less than zero or greater than the number of elements.

Applies to