泛型集合排序

Student sModel = new Student();
List list = new List();
list= list.OrderBy(s=> s.Age).ThenBy(s => s.Sort).ToList();

  

你可能感兴趣的:(泛型集合排序)