ConcurrentDictionary<TKey,TValue>.IDictionary<TKey,TValue>.Add 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.
Ajoute la clé et la valeur spécifiées à IDictionary<TKey,TValue>.
virtual void System.Collections.Generic.IDictionary<TKey,TValue>.Add(TKey key, TValue value) = System::Collections::Generic::IDictionary<TKey, TValue>::Add;
void IDictionary<TKey,TValue>.Add (TKey key, TValue value);
abstract member System.Collections.Generic.IDictionary<TKey,TValue>.Add : 'Key * 'Value -> unit
override this.System.Collections.Generic.IDictionary<TKey,TValue>.Add : 'Key * 'Value -> unit
Sub Add (key As TKey, value As TValue) Implements IDictionary(Of TKey, TValue).Add
Paramètres
- key
- TKey
Objet à utiliser comme clé de l'élément à ajouter.
- value
- TValue
Objet à utiliser comme valeur de l'élément à ajouter.
Implémente
Exceptions
key
a la valeur null
.
Un élément possédant la même clé existe déjà dans ConcurrentDictionary<TKey,TValue>.
Le dictionnaire contient trop d’éléments.