Adds one item with the specified key.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Type: System.Object
Key of the object to add.Type: System.Object
An item to add into the dictionary.If item (or several items) are already stored at specified key, this method fails. To check whether the item with such key exists, use the Contains(Object) method.
An alternative way to add new entries into the dictionary is to use the Item[Object] method. Unlike the Add(Object, Object) method, if the key is found in the dictionary, new item overwrites the old value.