如何使用 Linq 查找列表中不存在于另一个列表中的元素?

发布于 2024-11-16 08:44:50 字数 310 浏览 3 评论 0原文

我有 2 个 String 变量的 List

List<string> stringList1
List<string> stringList2 

其中 stringList2stringList1 的子集,

现在我想要所有元素stringList1 不在 stringList2

如何使用 Linq 实现此目的?

I have 2 List of String variables:

List<string> stringList1
List<string> stringList2 

where stringList2 is a subset of stringList1

now I want all the elements on stringList1 that aren't in stringList2

How do I achieve this using Linq?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嘿哥们儿 2024-11-23 08:44:51

您想要在 IEnumerable 上使用 Except 扩展方法

var results = stringList1.Except(stringList2);

You want to use the Except extension method on IEnumerable<T>

var results = stringList1.Except(stringList2);
原野 2024-11-23 08:44:51

使用这个 LINQ 表达式:

from string x in stringList1 where !stringList2.Contains(x) select x;

我确信有一个内置方法,但这就是 LINQ。 (我现在没有 VC#...)

Use this LINQ expression:

from string x in stringList1 where !stringList2.Contains(x) select x;

I'm sure there's a built in method, but that's the LINQ. (I don't have VC# with me right now...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文