Click or drag to resize

ArchivableDictionaryRemove Method

Removes the value with the specified key from the dictionary.

Namespace:  Rhino.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public bool Remove(
	string key
)

Parameters

key
Type: SystemString
The key of the element to remove.

Return Value

Type: Boolean
true if the element is successfully found and removed; otherwise, false. This method returns false if key is not found.

Implements

IDictionaryTKey, TValueRemove(TKey)
Exceptions
ExceptionCondition
ArgumentNullExceptionKey is null.
See Also