I\'m developing an application in PowerShell. I am storing variables in a hashtable. How can I keep the order in the hashtable? I want the order to be the same as I when I f
Hashtables do not hold order. If you want order then what you want is a System.Collections.Specialized.OrderedDictionary.