c# ordernar list code example
Example 1: c# how to sort a list
var simpleList = new List<ObjectName>();
list.OrderBy(o => o.PropertyName);
list.OrderBy(o => o.PropertyName).ThenBy(o => o.AnotherProperty);
list.OrderByDescending(o => o.PropertyName).ThenByDescending(o => o.AnotherProperty);
Example 2: c# sort list
using System;
class Program
{
static void Main()
{
string[] colors = new string[]
{
"orange",
"blue",
"yellow",
"aqua",
"red"
};
Array.Sort(colors);
foreach (string color in colors)
{
Console.WriteLine(color);
}
}
}