gpt4 book ai didi

c# - 根据可枚举属性查找项目

转载 作者:行者123 更新时间:2023-11-30 14:24:12 25 4
gpt4 key购买 nike

我有一个列表,其中 Item 对象中有一个列表。我可以使用列表的内置 Find 来返回其中包含一组特定数据对象的 Item 吗?

类似(伪代码):

users = List<Item>(new Item {name = "Bob, data = new List<Data>()}, new Item {name = "Bill", data = new List<Data>()})

users.Find(i => i.data.key == "foo" && i.data.value == "bar")

最佳答案

您可以在 linq-expression 中使用 linq-expression。例如:

users.Find(i => i.data.Any(a => <your condition>))

关于c# - 根据可枚举属性查找项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41937925/

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