ConcurrentDictionary<TKey,TValue>.IDictionary.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 au dictionnaire.
virtual void System.Collections.IDictionary.Add(System::Object ^ key, System::Object ^ value) = System::Collections::IDictionary::Add;
void IDictionary.Add (object key, object value);
abstract member System.Collections.IDictionary.Add : obj * obj -> unit
override this.System.Collections.IDictionary.Add : obj * obj -> unit
Sub Add (key As Object, value As Object) Implements IDictionary.Add
Paramètres
- key
- Object
Objet à utiliser comme clé.
- value
- Object
Objet à utiliser comme valeur.
Implémente
Exceptions
key
a la valeur null
.
key
est d’un type qui n’est pas assignable au type de clé du Dictionary<TKey,TValue>.
- ou -
value
a un type qui ne peut pas être assigné au type des valeurs dans Dictionary<TKey,TValue>.
- ou -
Une valeur ayant la même clé existe déjà dans Dictionary<TKey,TValue>.
Le dictionnaire contient trop d’éléments.