How to sort a List based on the item\'s integer value
The list is like
\"1\" \"5\" \"3\" \"6\" \"11\" \"9\" \"NUM1\" \"NUM0\"
The r
I don't think you need anything besides listName.Sort() because sort() method uses default comparer to quick sort nodes. Default comparer does exactly what you are interested in.