比较父母和子女列表

比较父母和子女列表

本文介绍了比较父母和子女列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 比较2个列表并从第二个列表中获取不匹配的列表值并将其添加到第一个列表中。 我有两个清单, 清单< 模板 > parent = new Template [] { new Template() {ID =1},新模板(){ID =2},新模板(){ID =3},新模板(){ID =4},新模板(){ID =5},新模板(){ID =6},} .ToList(); 列表< 模板 > child = new Template [] { new Template(){ID =1}, new Template(){ID =3}, new Template(){ID =5}, new Template(){ID =11},新模板(){ID =12} } .ToList(); 我希望父母名单是: 1 2 3 4 br /> 5 6 11 12 怎么做? i这样做了,但它没有用......, parent.AddRange(parent.Except( child).ToList()); 解决方案 Hi,Compare 2 list and get the not matched list values from 2nd list and add it into the 1st list.I have two list,List<Template> parent = new Template[] { new Template(){ID = "1"}, new Template(){ID = "2"}, new Template(){ID = "3"}, new Template(){ID = "4"}, new Template(){ID = "5"}, new Template(){ID = "6"}, }.ToList();List<Template> child = new Template[] { new Template(){ID = "1"}, new Template(){ID = "3"}, new Template(){ID = "5"}, new Template(){ID = "11"}, new Template(){ID = "12"} }.ToList();im expecting the parent list to be:1234561112how to do this?i did in this way, but its not working...,parent.AddRange(parent.Except(child).ToList()); 解决方案 这篇关于比较父母和子女列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-20 07:58