返回满足条件唯一元素的 C# 程序
Single() 方法返回满足条件的唯一元素。如果有多个元素满足条件,将抛出一个错误。
以下是我们的字符串数组。
string[] str = { "jack", "tom", "henry", "time"};
现在,使用 Single() 方法获取每个元素。然后,我们使用 Lambda 表达式计算长度大于 4 的元素。
str.AsQueryable().Single(name => name.Length > 4);
例子
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { string[] str = { "jack", "tom", "henry", "time"}; // finding string whose length is greater than 4 string res = str.AsQueryable().Single(name => name.Length > 4); Console.WriteLine(res); } }
输出
henry
广告