gpt4 book ai didi

c# - 使用 linq 与 list 进行比较?

转载 作者:太空狗 更新时间:2023-10-30 00:19:47 25 4
gpt4 key购买 nike

我有 3 个列表列表

ListMaster contains {1,2,3,4,....} ..getting populated from DB
List1 contains {1,3,4}
List2 contains {1,3,95}

如何使用 linq 检查主列表中存在哪些列表项

最佳答案

var inMaster = List1.Intersect(ListMaster);

或者对于两个列表:

var inMaster = List1.Intersect(List2).Intersect(ListMaster);

检查master中是否存在list1、list2中的任何项

var existInMaster = inMaster.Any();

关于c# - 使用 linq 与 list<String> 进行比较?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16852773/

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