将一个集合中的所有项目与另一个集合中的项目进行比较?

发布于 2024-09-11 13:01:00 字数 323 浏览 2 评论 0原文

嘿,我这里有这段代码:

ArrayList arrayList = new ArrayList();
arrayList.add("one");
arrayList.add("two");
arrayList.add("three");

List<DataRow> dataList = GetDataList(some params);

现在我想检查 arrayList 是否包含 dataList 中的元素。该字符串位于 dataList 中的 itemarray[0] 处。有一个不错的短代码版本可以做到这一点吗?

谢谢 :-)

Hey, I have this code here:

ArrayList arrayList = new ArrayList();
arrayList.add("one");
arrayList.add("two");
arrayList.add("three");

List<DataRow> dataList = GetDataList(some params);

Now I want to check if arrayList contains ther elements from dataList. The string is at itemarray[0] in dataList. Is there a nice short code version to do that?

Thanks :-)

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

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

发布评论

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

评论(1

‖放下 2024-09-18 13:01:00

在 .NET 3.5 中检查一个列表中的所有元素是否包含在另一个列表中:

bool result = list.All(x => dataList.Contains(x));

或者您可以使用 除了任何< /a>:

bool result = !list.Except(dataList).Any();

在您的示例中,您使用的是 ArrayList。您应该将其更改为 ListList 才能使用这些方法。否则,您可以编写arrayList.Cast()。

bool result = arrayList.Cast<object>().All(x => dataList.Contains(x));

In .NET 3.5 to check if all the elements from one list are contained in another list:

bool result = list.All(x => dataList.Contains(x));

Or you can do it using a combination of Except and Any:

bool result = !list.Except(dataList).Any();

In your example you are using an ArrayList. You should change this to List<object> or List<string> to use these methods. Otherwise you can write arrayList.Cast<object>().

bool result = arrayList.Cast<object>().All(x => dataList.Contains(x));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文