Search code examples
java.net.net-3.5linkedhashmap

LinkedHashMap in .NET


I wonder if there is a counterpart to java.util.LinkedHashMap in .NET? (ie. the elements are (re)ordered automatically if I access an element. (boolean accessOrder) ).


Solution

  • A bit of Googling seems to show that there is no built in C# equivalent for LinkedHashMap, but there are some third party options available.