Answers for "sort a list based on a object c#"

C#
10

c# how to sort a list

var simpleList = new List<ObjectName>();
// Order by a property
list.OrderBy(o => o.PropertyName);
// Order by multiple property
list.OrderBy(o => o.PropertyName).ThenBy(o => o.AnotherProperty);
// Same but descending
list.OrderByDescending(o => o.PropertyName).ThenByDescending(o => o.AnotherProperty);
Posted by: Guest on May-29-2020
0

c# list sort by property string

var sortedQuery = sampleList.OrderBy(x => x.MyProperty);
Posted by: Guest on January-19-2021
0

c# list sort by property string

list.Sort((a, b) =>  a.StringProperty.CompareTo(b.StringProperty));
Posted by: Guest on January-19-2021

Code answers related to "sort a list based on a object c#"

C# Answers by Framework

Browse Popular Code Answers by Language