c# sorted list by property code example
Example 1: c# list sort by property string
var sortedQuery = sampleList.OrderBy(x => x.MyProperty);
Example 2: c# list sort by property string
list.Sort((a, b) => a.StringProperty.CompareTo(b.StringProperty));