使用ThenBy()方法对序列中的元素进行排序。
我们有以下字符串数组。
string[] str = { "AAA", "AAAA", "A", "AAAAA", "AAAAAAAAA" };
现在,使用 Lambda 表达式并在ThenBy()方法中设置条件以根据字符串的字符数对字符串进行排序。
IEnumerable<string> res = str.AsQueryable() .OrderBy(alp => alp.Length).ThenBy(alp => alp);
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { string[] str = { "AAA", "AAAA", "A", "AAAAA", "AAAAAAAAA" }; IEnumerable<string> res = str.AsQueryable() .OrderBy(alp => alp.Length).ThenBy(alp => alp); foreach (string arr in res) Console.WriteLine(arr); } }输出结果
A AAA AAAA AAAAA AAAAAAAAA