IVector<T>.InsertAt(UInt32, T) Méthode
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.
Insère un élément à un index spécifié dans le vecteur.
public:
void InsertAt(unsigned int index, T value);
void InsertAt(uint32_t const& index, T const& value);
public void InsertAt(uint index, T value);
Public Sub InsertAt (index As UInteger, value As T)
Paramètres
- index
-
UInt32
unsigned int
uint32_t
Index de base zéro.
- value
- T
Élément à insérer.
Remarques
Lors de la programmation avec .NET, cette interface est masquée et vous devez utiliser l’interface T> System.Collections.Generic.IList<.
Si l’index est hors plage, la vue lève une exception.
C++/WinRT Si l’index est hors plage, le vecteur lève une
hresult_out_of_bounds
exception.
C++/CX Si l’index est hors plage, le vecteur lève une
OutOfBoundsException
exception.