interface IOrderedDictionary

in global :: System . Collections . Specialized

Represents an indexed collection of key/value pairs.


public void Insert( int index, object key, object value )

Inserts a key/value pair into the collection at the specified index.

  • index The zero-based index at which the key/value pair should be inserted.
  • key The object to use as the key of the element to add.
  • value The object to use as the value of the element to add. The value can be .

public void RemoveAt( int index )

Removes the element at the specified index.

  • index The zero-based index of the element to remove.

public object Item { get; set; }

😔 No documentation found.

public IDictionaryEnumerator GetEnumerator( )

😔 No documentation found.