gpt4 book ai didi

c# - LINQ - 输出列表 B 中包含的列表 A 中的项目的真/假 "checklist"

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

我有两个 list :

List<string> list1 = new List<string>(){ "a", "b", "c", "d"  };

List<string> list2 = new List<string>(){ "b", "d", "e" };

我想找到与 list2 中的项目匹配的 list1 的所有项目,并生成一个 List list3,其中包含:
{ false, true, false, true }

我该怎么办?

提前致谢,
波浪状的

最佳答案

这就是它所需要的:

list1.Select(str => list2.Contains(str)).ToList();

关于c# - LINQ - 输出列表 B 中包含的列表 A 中的项目的真/假 "checklist",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42067039/

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