C# Linq ThenBy 方法
使用ThenBy()方法对序列中的元素进行排序。
我们有以下字符串数组。
string[] str = { "AAA", "AAAA", "A", "AAAAA", "AAAAAAAAA" };
现在,使用Lambda表达式并在ThenBy()方法中设置条件以根据字符串的字符数对字符串进行排序。
IEnumerableres = 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输出结果res = str.AsQueryable() .OrderBy(alp => alp.Length).ThenBy(alp => alp); foreach (string arr in res) Console.WriteLine(arr); } }
A AAA AAAA AAAAA AAAAAAAAA