I have a dictionary in C#:
public Dictionary
And I would like to get my result in to a generic list:
Li
MyDict.OrderByDescending(x => x.Value).Select(p => p.Key).ToList();