Is it possible to sort a generic list on arbitrary property alphanumerically in c#? Let me know if the question is not clear and I will come up with an example.
Thanks in advance
Note: I have found this link that does it but not alphanumerically. Can anyone help me out?
http://blog.codewrench.net/2009/04/14/sorting-a-generic-list-on-arbitrary-property/
here is a fast alphanumeric sort (can be used for other sorts with numerics too).
C# Alphanumeric Sorting http://www.dotnetperls.com/alphanumeric-sorting
usage
and here is a nice article about the problem:
Sorting for Humans : Natural Sort Order http://www.codinghorror.com/blog/2007/12/sorting-for-humans-natural-sort-order.html