gpt4 book ai didi

c# - 在 C# 中比较两个数组

转载 作者:行者123 更新时间:2023-12-05 08:13:30 24 4
gpt4 key购买 nike

bool hasDuplicate = false;   
int[] a = new int[] {1, 2, 3, 4};
int[] b = new int[] { 5, 6, 1, 2, 7, 8 };

我需要将数组 A 的所有元素与数组 B 的元素进行比较,如果 B 中存在重复元素,则将 hasDuplicate 设置为 TRUE。

最佳答案

hasDuplicates = a.Intersect(b).Any();

您可以使用 LINQ Intersect 方法 - http://msdn.microsoft.com/en-us/library/system.linq.enumerable.intersect.aspx

关于c# - 在 C# 中比较两个数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11052132/

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