I want to sort below dictionary by Key.
Dictionary<string, string> Numbers;
Sample data:
(100,+100)
(24,+24)
(214,+214)
(3,+3)
(1,+1)
Expected Output:
(1,+1)
(3,+3)
(24,+24)
(100,+100)
(214,+214)
If I use SortedDictionary, my output is
(1,+1)(100,+100)(24,+24)(214,+214)(3,+3)