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