ConcurrentDictionary<TKey,TValue>.IDictionary.Item[Object] Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece el valor asociado a la clave especificada.
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
Parámetros
- key
- Object
Clave del valor que se va a obtener o establecer.
Valor de propiedad
Valor asociado a la clave especificada, o null
si key
no está en el diccionario o key
es de un tipo que no se puede asignar al tipo de clave de ConcurrentDictionary<TKey,TValue>.
Implementaciones
Excepciones
key
es null
.
Se está asignando un valor, y key
es de un tipo no asignable al tipo de clave o al tipo de valor de ConcurrentDictionary<TKey,TValue>.