sort list by value c# 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: built in methods to order a list c#
using System.Linq;
List<Order> objListOrder = new List<Order>();
List<Order> SortedList = objListOrder.OrderBy(o=>o.OrderDate).ToList();
List<Order> SortedList = objListOrder.OrderByDescending(o=>o.OrderDate).ToList();
Example 3: list sorting c#
using System.Linq;
myList.Sort();
myList.Sort();
myList.Reverse();
public int CompareTo(MyClass other)
{
return this.totalScore.CompareTo(other.varInClass)
}
Example 4: 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);
}
}
}