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

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


สร้างมากกว่าหนึ่งรายการ -

// two lists
var list1 = new List<int>{3, 4};
var list2 = new List<int>{1, 2, 3};

ตอนนี้ ใช้วิธี Intersect() เพื่อรับค่าทั่วไป -

var res = list1.Intersect(list2);

ต่อไปนี้เป็นรหัสที่สมบูรณ์ -

ตัวอย่าง

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

public class Demo {
   public static void Main() {

      // two lists
      var list1 = new List<int>{3, 4};
      var list2 = new List<int>{1, 2, 3};

      // common values
      var res = list1.Intersect(list2);

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

ผลลัพธ์

3