Click or drag to resize

DataDictionaryTKey, TValueAdd Method (Object, Object)

Adds an element with the provided key and value to the IDictionary object.

Namespace:  Slash.Unity.DataBind.Core.Data
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
public override void Add(
	Object key,
	Object value
)

Parameters

key
Type: SystemObject
The Object to use as the key of the element to add.
value
Type: SystemObject
The Object to use as the value of the element to add.

Implements

IDictionaryAdd(Object, Object)
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
ArgumentException An element with the same key already exists in the IDictionary object.
NotSupportedException The IDictionary is read-only.-or- The IDictionary has a fixed size.
See Also