gpt4 book ai didi

c# - 如何找出一个列表与另一个列表中是否存在重复项?

转载 作者:行者123 更新时间:2023-11-30 19:51:06 25 4
gpt4 key购买 nike

我有一个列表,其中 MyClass 有一个属性“名称”。我想知道列表中是否有重复的同名 MyClass。

此外,我有一个不同的列表,我想知道与列表 A 相比是否有任何重复项。

最佳答案

回答第一个问题

I want to know if there are duplicate MyClass with the same Name in the list.

你可以这样做:

bool hasDuplicates = 
listA.Count != listA.Select(c => c.Name).Distinct().Count();

第二个问题的回答

Also, I have a different List and I want to know if there are any duplicates compared to List A.

你可以这样做:

bool hasDuplicates = 
differentList.Select(c => c.Name).Intersect(listA.Select(c => c.Name)).Any();

关于c# - 如何找出一个列表与另一个列表中是否存在重复项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1592569/

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