IStringMap

Description

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

Inheritance Hierarchy

          IEnumerable

          ICollection

          IStringMap

Comments

In the map, each element has corresponding unique string key. Elements are sorted automatically by key on adding new elements to the map. If the element, which key already exists in the map, is added, value of this element is replaced.

Properties

  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 the collection of map keys.
Values The Values property returns the collection of map element 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 an new element to map.
Clear The Clear method clears the map of sting elements.
Clone The Clone method creates a copy of map of string elements.
ContainsKey The ContainsKey method checks if there is an element with the specified key.
Remove The Remove method removes element with the specified key.

Methods inherited from ICollection

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

See also:

Collections Assembly Interfaces