Sorting a C# Dictionary
- by SoulReaver
I have a dictionary in C# like
Dictionary<Person, int>
and I want to sort that dictionary in place with respect to keys (a field in class Person). How can I do it? Every available help on the internet is that of lists with no particular example of in place sorting of Dictionary. Any help would be highly appreciated!