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

Definition

Gets or sets the value associated with the specified key.

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

Parameters

key
Object

The key of the value to get or set.

Property Value

The value associated with the specified key, or null if key is not in the dictionary or key is of a type that is not assignable to the key type of the ConcurrentDictionary<TKey,TValue>.

Implements

Exceptions

key is null.

A value is being assigned, and key is of a type that is not assignable to the key type or the value type of the ConcurrentDictionary<TKey,TValue>.

Applies to

See also