I have the following dictionary:
SortedDictionary<int, string> dictionary = new SortedDictionary<int, string>();
dictionary.add(2007, "test1");
dictionary.add(2008, "test2");
dictionary.add(2009, "test3");
dictionary.add(2010, "test4");
dictionary.add(2011, "test5");
dictionary.add(2012, "test6");
I'd like to reverse the order of the elements so that when I display the items on the screen, I can start with 2012. I'd like to reassign the reversed dictionary back to the variable dictionary if possible.
I tried dictionary.Reverse() but that doesn't seem to be working as easily as I thought.
SortedDictionarywith a reversed comparer. – CodesInChaos Nov 10 '12 at 15:20Sortmethod. You just need the same comparer approach as that other question 2) No LINQ won't help you. You need a custom comparer. LINQ will give you anIEnumerable<KeyValuePair<TKey, TValue>>not aSortedDictionary<TKey, TValue>. – CodesInChaos Nov 10 '12 at 15:26