ConcurrentDictionary<TKey, TValue>.IDictionary.Add Method
Adds the specified key and value to the dictionary.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- key
- Type: System.Object
The object to use as the key.
- value
- Type: System.Object
The object to use as the value.
Implements
IDictionary.Add(Object, Object)| Exception | Condition |
|---|---|
| ArgumentNullException |
key is a null reference (Nothing in Visual Basic). |
| ArgumentException |
key is of a type that is not assignable to the key type of the Dictionary<TKey, TValue>. -or- value is of a type that is not assignable to , the type of values in the Dictionary<TKey, TValue>. -or- A value with the same key already exists in the Dictionary<TKey, TValue>.
|
| OverflowException |
The dictionary already contains the maximum number of elements, MaxValue. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.