LINQ查询表达式---------orderby子句 LINQ可以按元素的一个或多个属性对元素进行排序. class Program { public class PerInfo { public int Id { get; set; } public string Name { get; set; } public int Age { get; set; } } static void Main(string[] args) { List<PerInfo> perInfos = new L…
class Pet { public string Name{get;set;} public int Age{get;set;} } void Main() { Pet[] pets = { }, }, } }; //如果我们想根据Age进行排序 很容易想到这样来写: var query= from p in pets orderby p.Age select p; query.ToList().ForEach(q=>Console.WriteLine(q.Name +" "+…