You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for OrderedDictionary<TKey,TValue> does not include any information about how it differs from using a Dictionary<TKey, TValue>. The summary of "Represents a collection of key/value pairs that are accessible by the key or index." suggests that you can access elements in their added order but to do so requires casting to IList<TValue> which isn't obvious.