当前位置:  开发笔记 > 编程语言 > 正文

在N列表中查找公共对象

如何解决《在N列表中查找公共对象》经验,为你挑选了0个好方法。

我有N个"人物"清单.人们有2个属性:IdName.我想找到所有N个列表中包含的人员.我只想匹配Id.

以下是我的出发点:

List result = new List();

//I think I only need to find items in the first list that are in the others
foreach (People person in peoplesList.First()) {

    //then this is the start of iterating through the other full lists
    foreach (List list in peoplesList.Skip(1)) {

        //Do I even need this?

    }
}

我被困在试图把头包裹在中间部分.我只想要每个列表中的那些peoplesList.Skip(1).

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有