使用 C# 程式合併兩個或更多列表


設定三個列表 −

// three lists
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);

下面是完整程式碼 −

示例

 線上演示

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

public class Demo {
   public static void Main() {

      // three lists
      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

更新於: 22-Jun-2020

175 瀏覽

開始你的 職業生涯

完成課程認證

開始
廣告
© . All rights reserved.