The IStringMap interface contains properties and methods that are used to work with a map of character strings.
IStringList
In the string map, each element has correspondent unique character key. The elements are sorted by key.
Property name | Brief description | |
Item | The Item property determines value of the element with the specified key. | |
Key | The Key property returns the element key with the specified index. | |
Keys | The Keys property returns collection of string map keys. | |
Values | The Values property returns the collection of string map values. |
Property name | Brief description | |
Count | The Count property returns the number of array elements. |
Method name | Brief description | |
Add | The Add method adds elements into the map of character strings. | |
Clear | The Clear method clears the map of character strings. | |
Clone | The Clone method creates a copy of map of character strings. | |
ContainsKey | The ContainsKey method checks if there is an element with the specified key. | |
Remove | The Remove method removes element with the specified key. |
Method name | Brief description | |
CopyTo | The CopyTo method copies the collection into an array. |
See also: