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.
indexThe zero-based index at which the key/value pair should be inserted.keyThe object to use as the key of the element to add.valueThe 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.
indexThe zero-based index of the element to remove.
public object Item { get; set; }
😔 No documentation found.
public IDictionaryEnumerator GetEnumerator( )
😔 No documentation found.