IDeque<TValue>.Item[Int32] Propriedade

Definição

Obtém ou define o elemento na posição indicada no contêiner.Gets or sets the element at the indicated position in the container.

public:
 property TValue default[int] { TValue get(int _Pos); void set(int _Pos, TValue value); };
public TValue this[int _Pos] { get; set; }
member this.Item(int) : 'Value with get, set
Default Public Property Item(_Pos As Integer) As TValue

Parâmetros

_Pos
Int32

A posição do elemento a ser obtido ou definido.The position of the element to get or set.

Valor da propriedade

TValue

O elemento na posição indicada.The element at the indicated position.

Comentários

Para obter mais informações, consulte deque:: Operator (STL/CLR).For more information, see deque::operator(STL/CLR).

Aplica-se a