I have a dictionary in C# like
Dictionary
and I want to sort that dictionary in place with respect to keys (a f
By design, dictionaries are not sortable. If you need this capability in a dictionary, look at SortedDictionary instead.