The ISortedList interface contains properties and methods that are used to work with the collection of the Key-Value pairs sorted by key values.
ISortedList
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 | |
Clone | The Clone method creates a copy of the array. | |
ContainsKey | The ContainsKey method checks if there is an element with the specified key. | |
ContainsValue | The ContainsValue method checks i there is an element with the specified value. | |
GetByIndex | The GetByIndex method returns value of the element with the specified index. | |
GetKey | The GetKey method returns element key by index. | |
GetKeyList | The GetKeyList method returns the list of array keys. | |
GetValueList | The GetValueList method returns the list of array values. | |
IndexOfKey | The IndexOfKey method returns element index by key. | |
IndexOfValue | The IndexOfValue method returns element index by value. | |
RemoveAt | The RemoveAt method removes element by the index. | |
SetByIndex | The SetByIndex method changes element value by index. |
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: