2

我有两个集合:

 List<MyObject>
  1. 全系列
  2. 旧收藏

我想找出完整列表中的对象,而不是其他列表中的对象。做这样的事情的最快方法是什么:

var inOneButNotTheOther = 
    fullCollection.Remove(oldCollection, new MyObjectComparer());
4

1 回答 1

3
fullCollection.Except(oldCollection, new MyObjectComparer())
于 2012-08-18T14:04:57.523 回答