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

โปรแกรม C# เพื่อค้นหา Union ของสองรายการขึ้นไป


ขั้นแรก สร้างรายการ −

//three lists
var list1 = new List{3, 4, 5};
var list2 = new List{1, 2, 3, 4, 5};
var list3 = new List{5, 6, 7, 8};

ใช้วิธีการรวมเพื่อรับการรวมของ list1 และ list2 -

var res1 = list1.Union(list2);
var res2 = res1.Union(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, 5};
      var list2 = new List<int>{1, 2, 3, 4, 5};
      var list3 = new List<int>{5, 6, 7, 8};

      // finding union
      var res1 = list1.Union(list2);
      var res2 = res1.Union(list3);

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

ผลลัพธ์

3
4
5
1
2
6
7
8