ConcurrentDictionary<TKey,TValue>.IDictionary.Add 方法

定义

将指定的键和值添加到字典中。

 virtual void System.Collections.IDictionary.Add(System::Object ^ key, System::Object ^ value) = System::Collections::IDictionary::Add;
void IDictionary.Add (object key, object value);
abstract member System.Collections.IDictionary.Add : obj * obj -> unit
override this.System.Collections.IDictionary.Add : obj * obj -> unit
Sub Add (key As Object, value As Object) Implements IDictionary.Add

参数

key
Object

要用作键的对象。

value
Object

要用作值的对象。

实现

例外

keynull

key 属于不可分配给 的 Dictionary<TKey,TValue>键类型的类型。

- 或 -

value 属于不能分配给 Dictionary<TKey,TValue> 中的值类型的类型。

- 或 -

Dictionary<TKey,TValue> 中已存在相同键的值。

字典包含过多元素。

适用于

另请参阅