I have a dictionary in C# like
Dictionary
and I want to sort that dictionary in place with respect to keys (a f
Take a look at SortedDictionary, there's even a constructor overload so you can pass in your own IComparable for the comparisons.
SortedDictionary