I have a List looks like:
List<string> newList = new List<string>() { "10S", "XS", "80", "5S", "160", "40S", "80S", "STD", "40", "XXS" };
And I want to sort it to
- { "40", "80", "160", "5S", "10S", "40S", "80S", "STD", "XS", "XXS" };
How should I do it? Hope anyone can help me on this issue, thanks a lot!