IVector<TValue>.at(Int32) Method

Definition

Accesses an element at a specified position in the container.

public:
 TValue % at(int _Pos);
public ref TValue at (int _Pos);
abstract member at : int -> 'Value
Public Function at (_Pos As Integer) As TValue

Parameters

_Pos
Int32

The position of the element to access.

Returns

TValue

The element of the controlled sequence at position _Pos.

Remarks

For more information, see vector::at (STL/CLR).

Applies to