I need to order a Dictionary in VB.net based off of the keys. The keys and values are all strings. The dictionary does not have a .Sort(). Is there a way to do this without having to write my own sorting algorithm?
I need to order a Dictionary in VB.net based off of the keys. The
Share
SortedDictionary comes to mind, but it sorts only on the key.
Otherwise, this answer might help How do you sort a C# dictionary by value?.