标签: c# .net
是否有任何Collections.disjoint()(Java语言)类似于.NET(C#)的API或库?
Collections.disjoint()
来自API说明:
如果两个指定的集合没有,则 disjoint返回true 共同的元素。
disjoint返回true 共同的元素。
答案 0 :(得分:5)
听起来你只是在寻找LINQ Intersect方法:
Intersect
bool disjoint = !collection1.Intersect(collection2).Any();