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>::IDictionary<TKey, TValue>::Add Method (TKey, TValue)

.NET Framework (current version)
 

Adds the specified key and value to the IDictionary<TKey, TValue>.

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

private:
virtual void Add(
	TKey key,
	TValue value
) sealed = IDictionary<TKey, TValue>::Add

Parameters

key
Type: TKey

The object to use as the key of the element to add.

value
Type: TValue

The object to use as the value of the element to add.

Exception Condition
ArgumentNullException

key is null.

ArgumentException

An element with the same key already exists in the ConcurrentDictionary<TKey, TValue>.

OverflowException

The dictionary already contains the maximum number of elements (MaxValue).

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