How can i sort the dictionary using keys in c#---Is it possible using LINQ?

Posted by rajeshse on Stack Overflow See other posts from Stack Overflow or by rajeshse
Published on 2010-05-27T07:13:41Z Indexed on 2010/05/27 7:21 UTC
Read the original article Hit count: 117

Filed under:
    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"

© Stack Overflow or respective owner

Related posts about c#