Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

두 목록의 차이점을 나열하는 C# 프로그램

<시간/>

두 목록의 차이를 얻으려면 먼저 C#에서 두 목록을 설정하십시오 -

// first list
List < string > list1 = new List < string > ();
list1.Add("A");
list1.Add("B");
list1.Add("C");
list1.Add("D");

// second list
List < string > list2 = new List < string > ();
list2.Add("C");
list2.Add("D");
foreach(string value in list2) {
   Console.WriteLine(value);
}

차이를 얻으려면 아래와 같이 IEnumerable 및 except()를 사용하십시오. 차이점은 세 번째 목록에 나와 있습니다. -

IEnumerable < string > list3;
list3 = list1.Except(list2);

다음은 완전한 코드입니다 -

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

public class Demo {
   public static void Main() {
      List < string > list1 = new List < string > ();
      list1.Add("A");
      list1.Add("B");
      list1.Add("C");
      list1.Add("D");

      Console.WriteLine("First list...");
      foreach(string value in list1) {
         Console.WriteLine(value);
      }

      Console.WriteLine("Second list...");
      List < string > list2 = new List < string > ();

      list2.Add("C");
      list2.Add("D");
      foreach(string value in list2) {
         Console.WriteLine(value);
      }

      Console.WriteLine("Difference in the two lists...");
      IEnumerable < string > list3;
      list3 = list1.Except(list2);
      foreach(string value in list3) {
         Console.WriteLine(value);
      }

   }
}

출력

First list...
A
B
C
D
Second list...
C
D
Difference in the two lists...
A
B