【发布时间】:2014-12-31 12:24:01
【问题描述】:
对我来说,似乎任何操作都像
var list = new List<int>();
// list.Add some elements...
list.Except(anotherList).Intersect(yetAnotherList)
这总是一样吗:
list.Intersect(yetAnotherList).Except(anotherList)
我不是 100% 确定。
感谢您的帮助。
【问题讨论】:
标签: c# linq list intersect except