gpt4 book ai didi

c# - 查找不在第二个列表中的一项列表

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

我有以下两个列表

列表 1

public List<string> _strImportFields = new List<string> {"1","2","5","6"}

public List<string> _strImportFields2 = new List<string> {"1","2","3","4"}

我想找到第二个列表中不存在的所有项目

里面有很多例子,我都试过了,但没有得到想要的结果

请帮忙

谢谢

最佳答案

使用Except

var items = _strImportFields.Except(_strImportFields2);

它将找到第一个列表中不在第二个列表中的所有项目,看这里 Ideone

关于c# - 查找不在第二个列表中的一项列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20041594/

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