Click or drag to resize

ArchivableDictionaryItem Property

Gets the value associated with the specified key.

Namespace:  Rhino.Collections
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public Object this[
	string key
] { get; set; }

Parameters

key
Type: SystemString
The key of the value to get or set.

Return Value

Type: Object
The value associated with the specified key. If the specified key is not found, a get operation throws a KeyNotFoundException.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf the key is null.
KeyNotFoundExceptionIf the key is not found.
See Also