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

วิธีสหภาพใน C #


วิธี Union ได้รับองค์ประกอบที่ไม่ซ้ำจากทั้งสองรายการ

ให้เราตั้งสองรายการ -

var list1 = new List<int>{12, 65, 88, 45};
var list2 = new List<int>{40, 34, 65};

ตอนนี้รับการรวมกันของทั้งสองรายการ -

var res = list1.Union(list2);

ต่อไปนี้เป็นตัวอย่าง −

ตัวอย่าง

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

public class Demo {
   public static void Main() {

      // two lists
      var list1 = new List<int>{12, 65, 88, 45};
      var list2 = new List<int>{40, 34, 65};

      // finding union
      var res = list1.Union(list2);

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

ผลลัพธ์

12
65
88
45
40
34