people.Sort((x, y) => string.Compare(x.LastName, y.LastName));
If need to create a new list:
var newList = people.OrderBy(x=>x.LastName)
Springboard example, sorting sections on section No.
List
//... load sections ...
sections.Sort((x, y) => x.SectionNo.CompareTo(y.SectionNo));