//倒序
list.OrderByDescending(i => i.a).ThenByDescending(i => i.b);
//順序
list.OrderBy(i => i.a).ThenBy(i => i.b);