Search notes:

System.Collections.Specialized.OrderedDictionary (class)

PowerShell

In PowerShell, an object whose type is S.C.S.OrderedDictionary can be created like so:
PS: C:\> $oht = [ordered] @{
  key_1 = 'foo'
  key_2 = 'bar'
  key_3 = 'baz'
}

PS: C:\> $oht.GetType().FullName
System.Collections.Specialized.OrderedDictionary
See also Hash tables in PowerShell

See also

System.Collections.Hashtable

Index