IDictionary - abstract glossary interface.
IDictionary
A glossary is a table containing element value and unique key for each element.
This interface is basic for the following interfaces:
| Property name | Brief description | |
| Item | The Item property determines value of glossary element. | |
| Keys | The Keys property returns an object that contains the collection of glossary keys. | |
| Values | The Values property returns the object that contains the collection of the values of the glossary elements. |
| Property name | Brief description | |
| Count | The Count property returns the number of array elements. |
| Method name | Brief description | |
| Add | The Add method adds an element to glossary. | |
| Clear | The Clear method clears the glossary. | |
| Contains | The Contains method checks if the element with the Key key exists. | |
| Remove | The Remove method removes element with the Key key. |
| Method name | Brief description | |
| CopyTo | The CopyTo method copies the collection into an array. |
See also: