ConcurrentDictionary<TKey,TValue>.IDictionary.Item[Object] Propriété
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 ou définit la valeur associée à la clé spécifiée.
property System::Object ^ System::Collections::IDictionary::Item[System::Object ^] { System::Object ^ get(System::Object ^ key); void set(System::Object ^ key, System::Object ^ value); };
object System.Collections.IDictionary.Item[object key] { get; set; }
object? System.Collections.IDictionary.Item[object key] { get; set; }
member this.System.Collections.IDictionary.Item(obj) : obj with get, set
Property Item(key As Object) As Object Implements IDictionary.Item
Paramètres
- key
- Object
Clé de la valeur à obtenir ou à définir.
Valeur de propriété
Valeur associée à la clé spécifiée, ou null
si ne figure pas dans le dictionnaire ou key
est d’un type qui n’est pas assignable au type de clé du ConcurrentDictionary<TKey,TValue>key
.
Implémente
Exceptions
key
a la valeur null
.
Une valeur est assignée et key
a un type qui ne peut pas être assigné au type de clé ou au type valeur de ConcurrentDictionary<TKey,TValue>.