gpt4 book ai didi

c# - 像 List.Exists(predicate) 这样的 LINQ 方法?

转载 作者:太空宇宙 更新时间:2023-11-03 18:03:55 25 4
gpt4 key购买 nike

我正在寻找类似 List.Exists(predicate) 的 LINQ 方法。

bool exists = mylist.Exists(p => p.Name == "Kamila");

bool exists = collection.??????(p => p.Name == "Kamila");

最佳答案

使用 .Any方法:

//Will return true (and stop future iteration the moment the predicate is met)
//Otherwise false
bool exists = collection.Any(p => p.Name == "Kamila");

关于c# - 像 List.Exists(predicate) 这样的 LINQ 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40040106/

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