c# sort list of strings code example
Example 1: sort list c# by string
ListObject = ListObject.OrderBy(item => item.Property).ToList();
Example 2: c# sort list
using System;
class Program
{
static void Main()
{
string[] colors = new string[]
{
"orange",
"blue",
"yellow",
"aqua",
"red"
};
// Call Array.Sort method.
Array.Sort(colors);
foreach (string color in colors)
{
Console.WriteLine(color);
}
}
}