C#程序连接两个或更多列表

设置三个列表-

//三个列表
var list1 = new List<int>{3, 4};
var list2 = new List<int>{1, 2, 3};
var list3 = new List<int>{2, 5, 6};

现在,使用Concat mthod合并以上列表-

var res1 = list1.Concat(list2);
var res2 = res1.Concat(list3);

这是完整的代码-

示例

using System.Collections.Generic;
using System.Linq;
using System;

public class Demo {
   public static void Main() {

      //三个列表
      var list1 = new List<int>{3, 4};
      var list2 = new List<int>{1, 2, 3};
      var list3 = new List<int>{2, 5, 6};

      //concat-
      var res1 = list1.Concat(list2);
      var res2 = res1.Concat(list3);

      foreach(int i in res2) {
         Console.WriteLine(i);
      }
   }
}

输出结果

3
4
1
2
3
2
5
6