如何查找list中满足这种条件的值

时间:2022-05-29 15:11:23
list是这样的List<Tuple<string item1,string item2,string item3>>
在这个list里,如果有两条满足item1不相同,item2和item3都相同,那么我就执行其他的操作,请教下用什么方法可以找出满足条件的两条数据

1 个解决方案

#1


list.GroupBy(x => new { x.Item2, x.Item3 }).Where(x => x.Count() >= 2).Select(x => x.Key)

#1


list.GroupBy(x => new { x.Item2, x.Item3 }).Where(x => x.Count() >= 2).Select(x => x.Key)