Computer >> Máy Tính >  >> Lập trình >> C#

Làm thế nào để so sánh hai danh sách và thêm sự khác biệt vào danh sách thứ ba trong C #?

Đầu tiên, đặt hai danh sách -

Danh sách một

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

Danh sách hai

List < string > list2 = new List < string > ();
list2.Add("C");
list2.Add("D");

Để tìm sự khác biệt giữa hai danh sách và hiển thị các phần tử khác biệt -

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

Sau đây là ví dụ hoàn chỉnh để so sánh hai danh sách -

Ví dụ

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);
      }
   }
}