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 the collection of dictionary keys. |
![]() |
Values | The Values property returns the collection of dictionary element values. |
| 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: