gpt4 book ai didi

c# - 通过 where 子句传入 func

转载 作者:行者123 更新时间:2023-12-02 17:49:38 25 4
gpt4 key购买 nike

给定一个 .net 4. 集合,如果我想在 where 子句中传递我自己的自定义函数,我该怎么做(通过参数)?

谢谢

最佳答案

你的意思是这样的吗?

public IEnumerable<string> FilterNames(Func<string, bool> filter)
{
return people.Select(person => person.Name)
.Where(filter);
}

关于c# - 通过 where 子句传入 func,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10032423/

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