c# sort list by property code example
Example 1: list sorting c#
using System.Linq;
myList.Sort();
myList.Sort();
myList.Reverse();
public int CompareTo(MyClass other)
{
return this.totalScore.CompareTo(other.varInClass)
}
Example 2: c# list sort by property string
var sortedQuery = sampleList.OrderBy(x => x.MyProperty);
Example 3: 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 4: c# list sort by property string
list.Sort((a, b) => a.StringProperty.CompareTo(b.StringProperty));
Example 5: 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);
}
}
}