c# order list by property code example
Example 1: c# list sort by property string
var sortedQuery = sampleList.OrderBy(x => x.MyProperty);
Example 2: sorting a list of objects in c#
List<Order> SortedList = objListOrder.OrderBy(o=>o.OrderDate).ToList();
List<Order> DescSortedList = objListOrder.OrderByDescending(o=>o.OrderDate).ToList();
Example 3: c# list sort by property string
list.Sort((a, b) => a.StringProperty.CompareTo(b.StringProperty));
Example 4: 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);
}
}
}