OrderedDictionary<TKey,TValue>.SetAt 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.
Surcharges
SetAt(Int32, TValue) |
Définit la valeur de la clé à l’index spécifié. |
SetAt(Int32, TKey, TValue) |
Définit la paire clé/valeur à l’index spécifié. |
SetAt(Int32, TValue)
Définit la valeur de la clé à l’index spécifié.
public:
void SetAt(int index, TValue value);
public void SetAt (int index, TValue value);
member this.SetAt : int * 'Value -> unit
Public Sub SetAt (index As Integer, value As TValue)
Paramètres
- index
- Int32
Index de base zéro de l’élément à obtenir ou définir.
- value
- TValue
Valeur à stocker à l’index spécifié.
S’applique à
SetAt(Int32, TKey, TValue)
Définit la paire clé/valeur à l’index spécifié.
public:
void SetAt(int index, TKey key, TValue value);
public void SetAt (int index, TKey key, TValue value);
member this.SetAt : int * 'Key * 'Value -> unit
Public Sub SetAt (index As Integer, key As TKey, value As TValue)
Paramètres
- index
- Int32
Index de base zéro de l’élément à obtenir ou définir.
- key
- TKey
Clé à stocker à l’index spécifié.
- value
- TValue
Valeur à stocker à l’index spécifié.