I have a list of my custom class Customer and I want to sort them alphabetically by Title. So I wrote
myList = myList.OrderByDescending(x => x.Title).ToL
You can use culture specific StringComparer, see here.
StringComparer
CultureInfo culture = new CultureInfo("sv-SE"); var result = myList.OrderByDescending(x => x.Title, StringComparer.Create(culture, false));