Class
HashtableDictionary

An object-object dictionary which returns null in case a key is not found (the normal dictionary does throw an exception in this case).

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.WinControls.RadDiagram.dll

Syntax:

cs-api-definition
public class HashtableDictionary : Dictionary<object, object>, IDictionary, ICollection, IEnumerable, ISerializable, IDeserializationCallback

Inheritance: objectDictionary<object, object>HashtableDictionary

Implements: ICollectionIDeserializationCallbackIDictionaryIEnumerableISerializable

Constructors

HashtableDictionary()

Initializes a new instance of the HashtableDictionary class.

Declaration

cs-api-definition
public HashtableDictionary()

Properties

this[object]

Gets or sets the object with the specified key.

Declaration

cs-api-definition
public object this[object key] { get; set; }

Parameters

key

object

Property Value

object