使用diff结构C#合并两个列表

前端之家收集整理的这篇文章主要介绍了使用diff结构C#合并两个列表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个结构对象列表
string source,string target,int count

样本数据:

sourcea      targeta      10
sourcea      targetb      15
sourcea      targetc      20

我的另一个对象列表是结构

string source,int addnvalueacount,int addnvaluebcount,int addnvalueccount

样本数据:

sourcea    10    25   35

我希望将第二个列表更改为第一个列表结构,然后使用第一个列表进行联合all(concat).

所以结果应该如下所示:

sourcea      targeta      10
sourcea      targetb      15
sourcea      targetc      20
sourcea      addnlvaluea  10
sourcea      addnlvalueb  25
sourcea      addnlvaluec  35

所有帮助都是真诚的感谢..

谢谢

解决方法

我推荐Concat和SelectMany;为你提供
List<A> listA = new List<A> {
  new A ("sorcea","targeta",10),new A ("sorcea","targetb",15),"targetc",20),};

List<B> listB = new List<B> {
  new B ("sourcea",10,15,35),};

为了Concat你要做的就是添加SelectMany:

var result = listA
  .Concat(listB
    .SelectMany(item => new [] { // turn single B item into three A
       new A(item.source,"addnvaluea",item.addnvalueacount),new A(item.source,"addnvalueb",item.addnvaluebcount),"addnvaluec",item.addnvalueccount),}));
原文链接:https://www.f2er.com/csharp/243382.html

猜你在找的C#相关文章