IStringMap

Description

The IStringMap interface contains properties and methods that are used to work with a map of character strings.

Inheritance Hierarchy

          IEnumerable

          ICollection

          IStringList

Comments

In the map of strings, each element has correspondent unique character key. The elements are sorted by key.

Properties

  Property name Brief description
Item The Item property determines element value.
Key The Key property returns the element key by its index.
Keys The Keys property returns collection of string map keys.
Values The Values property returns the collection of string map values.

Properties inherited from ICollection

  Property name Brief description
Count The Count property returns the number of array elements.

Methods

  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 an element by the key exists.
Remove The Remove method removes an element by its key.

Methods inherited from ICollection

  Method name Brief description
CopyTo The CopyTo method copies the collection into an array.

See also:

Collections Assembly Interfaces