How do you sort a listBox by number value rather than alphabetically
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I am storing card displays (eg J♣) in a list box through a list and I want to order the cards numerically from greatest value to smallest value in the list box. When I change the sorting property on the properties box to "descending", the list is sorted inverse-alphabetically (ie Q is at top and 10 is at the bottom). I want to sort the list descending numerically, by value, so that A is at the top and 2 is at the bottom. How can I do this?