Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ConcurrentDictionary<TKey, TValue>::Item Property (TKey)

.NET Framework (current version)
 

Gets or sets the value associated with the specified key.

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

public:
property TValue default[
	TKey key
] {
	virtual TValue get(TKey key) sealed;
	virtual void set(TKey key, TValue value) sealed;
}

Parameters

key
Type: TKey

The key of the value to get or set.

Property Value

Type: TValue

The value of the key/value pair at the specified index.

Exception Condition
ArgumentNullException

key is null.

KeyNotFoundException

The property is retrieved and key does not exist in the collection.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft