ReadOnlyDictionary<TKey, TValue>::IDictionary::Item Property (Object^)

.NET Framework (current version)
 

Gets the element that has the specified key.

Namespace:   System.Collections.ObjectModel
Assembly:  mscorlib (in mscorlib.dll)

private:
property Object^ default[
	Object^ key
] {
	virtual Object^ get(Object^ key) sealed = IDictionary::default::get;
	virtual void set(Object^ key, Object^ value) sealed = IDictionary::default::set;
}

Parameters

key
Type: System::Object^

The key of the element to get or set.

Property Value

Type: System::Object^

The element that has the specified key.

Exception Condition
ArgumentNullException

key is null.

NotSupportedException

The property is set.

-or-

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

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.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.5
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show: