Lambda表达式where过滤数据

时间:2022-11-21 18:45:48

使用Lambda的表达式来过滤符合条件的数据。下面的代码实现,是把字符阵列中,把名字长度等于3元素找出来。

Lambda表达式where过滤数据

 

Lambda表达式where过滤数据Lambda表达式where过滤数据
class Bv
{
public void LambdaExpression()
{
string[] names = new string[] { "insus", "leo", "yang", "Joe", "Michael" };

var result = names.Where(x => x.Length == 3);

foreach (string s in result)
{
Console.WriteLine(s);
}
}

}
Source Code

 

运行结果:

Lambda表达式where过滤数据