调用***Sort()***方法其结果默认是升序的 在默认升序后调用Reverse()反转 和默认升序的Sort()方法等同的方法: l1.Sort((x, y) => x.CompareTo(y)); 降序排列的方法:l1.Sort((x, y) => -x.CompareTo(y));