How can i sort the dictionary using keys in c#---Is it possible using LINQ?
- by rajeshse
Dictionary<string,string> l_dictData = new Dictionary<string,string>
the above dictionary contains data like this:
(1)key = "4" value"122"
(2)key = "8" value"1772"
(3)key = "0" value"166"
Required output:
(1)key = "0" value"166"
(2)key = "4" value"122"
(3)key = "8" value"1772"