gpt4 book ai didi

c# - 带有 where 子句的 foreach 循环

转载 作者:IT王子 更新时间:2023-10-29 04:17:45 25 4
gpt4 key购买 nike

我想知道是否可以在 C# 中使用 where 循环创建 foreach 循环。不是在内部使用 if 语句,而是在循环声明中使用 where 子句。

也许是这样的?

foreach(var n in people where n.sex == male)
{
}

最佳答案

是的,这是可能的:

方法语法:

foreach (var person in people.Where(n => n.sex == "male"))
{
}

或者相当冗长的查询语法:

foreach (var person in from person in people where person.sex == "male" select person) 

关于c# - 带有 where 子句的 foreach 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25412158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com