Is there any way to iterate over a Dictionary, in sorted order, sorted by VALUE not key? I did read abut the "SortedDictionary" object, but sadly, that is sorted by key. One solution would be for me to flip all of my keys with my values, and place them into a SortedDictionary (as they are all integers) -- However, I'm not entirely sure how to go with that one either.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Get the pairs of keys/values out, sort them, and iterate. Dead easy using LINQ:
|
|||||||
|
|
For completion, the suggested code above (dictionary.OrderBy(p => p.Value)) "will not" work for custom types. OrderBy makes use of IComparable to be able to compare two objects. If Value in your dictionary is a custom type then it must implement IComparable to be able to sort values in a proper way. Read on here. |
|||||||||
|
|
// sort dictionary by value
|
|||
|
|