ConcurrentDictionary<TKey,TValue>.IDictionary.Item[Object] Propiedad

Definición

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>.

Se aplica a

Consulte también