IVector<TValue>.Item[Int32] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Accède à un élément à une position spécifiée dans le conteneur.
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
Paramètres
- _Pos
- Int32
Position de l’élément à accéder.
Valeur de propriété
Élément à la position _Pos.
Remarques
Pour plus d’informations, consultez vector ::operator(STL/CLR).