How can I sort a List by order of case e.g.
- smtp:user@domain.com
- smtp:user@otherdomain.com
- SMTP:user@anotherdomain.com
I would like to sort so that the upper case record is first in the list e.g SMTP:user@anotherdomain.com.
|
feedback
|
|
You can use StringComparer.Ordinal to get a case sensitive sorting:
| |||
feedback
|
|
I was writing another example while t4rzsan has answered =) I prefer t4rzsan“s answer... anyway, this is the answer I was writing.
Example of using your own string comparer:
| ||||
|
feedback
|
|
Most language libraries have a built in sort function with a way to specify the compare function. You can customize the compare function to sort based on any criteria you want. In your case the default sort function will probably work. | |||
|
feedback
|