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

Definição

Obtém ou define o valor associado à chave 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

A chave do valor a ser obtido ou definido.

Valor da propriedade

O valor associado à chave especificada ou null se key não estiver no dicionário ou key for de um tipo que não é atribuível ao tipo de chave do ConcurrentDictionary<TKey,TValue>.

Implementações

Exceções

key é null.

Um valor está sendo atribuído e key é de um tipo que não é atribuível ao tipo de chave ou ao tipo de valor do ConcurrentDictionary<TKey,TValue>.

Aplica-se a

Confira também