我有两个集合:
List<MyObject>
- 全系列
- 旧收藏
我想找出完整列表中的对象,而不是其他列表中的对象。做这样的事情的最快方法是什么:
var inOneButNotTheOther =
fullCollection.Remove(oldCollection, new MyObjectComparer());
我有两个集合:
List<MyObject>
我想找出完整列表中的对象,而不是其他列表中的对象。做这样的事情的最快方法是什么:
var inOneButNotTheOther =
fullCollection.Remove(oldCollection, new MyObjectComparer());