Forum Moderators: open
This is something I can do in PHP, but now I need to do it in C#
I have a list of keys and vales, like:
myarray['happy']=4
myarray['sad']=5
myarray['glum']=7
myarray['giddy']=2
I want to sort them in order and show them as a list:
glum (7)
sad (5)
happy (4)
giddy (2)
How do I do that in C#?
You'll prolly want to google sortedlist c#
I don't have any sample code unfortuneatly. Perhaps someone else could post some.
-=casey=-