Vector.GetElement<T>(Vector<T>, Int32) 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.
Obtient l'élément au niveau de l'index spécifié.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T GetElement(System::Numerics::Vector<T> vector, int index);
public static T GetElement<T> (this System.Numerics.Vector<T> vector, int index);
static member GetElement : System.Numerics.Vector<'T> * int -> 'T
<Extension()>
Public Function GetElement(Of T) (vector As Vector(Of T), index As Integer) As T
Paramètres de type
- T
Type des éléments dans le vecteur.
Paramètres
- vector
- Vector<T>
Vecteur à partir duquel obtenir l’élément.
- index
- Int32
Index de l’élément à obtenir.
Retours
Valeur de l’élément à la position index
.
Exceptions
index
est inférieur à zéro ou supérieur au nombre d’éléments.
Le type de vector
(T
) n’est pas pris en charge.