I Have one Dictionary\[code\]Dictionary<string, string> rList = new Dictionary<string, string>();rList .Add("/a/b/c", "35");rList .Add("/a/c/f/v", "25");rList .Add("/a/r/d/c/r/v", "29");rList .Add("/a", "21");rList .Add("/a/f, "84");\[/code\]I just want to sort this Dictionary based on the number of number of '/' present in the key. my expected out put is ,\[code\]("/a/r/d/c/r/v", "29")("/a/c/f/v", "25")("/a/b/c", "35")("/a/f, "84")("/a", "21")\[/code\]