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

Definition

Gets the element that has 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 element to get or set.

Property Value

The element that has the specified key.

Implements

Exceptions

key is null.

The property is set.

-or-

The property is set, key does not exist in the collection, and the dictionary has a fixed size.

Remarks

This member is an explicit interface member implementation. It can be used only when the ReadOnlyDictionary<TKey,TValue> instance is cast to an IDictionary interface.

Applies to