Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

interface System.​Collections.​Specialized.​IOrderedDictionary

Assembly: System.Collections.Specialized

Implemented Interfaces

Represents an indexed collection of key/value pairs.

Properties

object
Item

Methods

GetEnumerator​()
Returns an enumerator that iterates through the <see cref="T:System.Collections.Specialized.IOrderedDictionary" /> collection.
Returns An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the entire <see cref="T:System.Collections.Specialized.IOrderedDictionary" /> collection.
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 <see langword="null" /> .
void
RemoveAt​(int index)
Removes the element at the specified index.
index The zero-based index of the element to remove.