Class DictionaryList
This class implements a custom dictionary that supports IList interface.
Inheritance
System.Object
DictionaryList
Implements
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable
Namespace: Syncfusion.Windows.Tools
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class DictionaryList : ListDictionary, IList, ICollection, IEnumerable
Constructors
DictionaryList()
Initializes a new instance of the DictionaryList class.
Declaration
public DictionaryList()
Properties
Item[Object]
Gets or sets the System.Object with the specified key.
Declaration
public object this[object key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Object | key | The key of Dictionary entry. |
Property Value
Type |
---|
System.Object |
Implements
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable