Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

โปรแกรม 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