list2=newList();list2.Add("C");list2.Add(&"/> list2=newList();list2.Add("C");list2.Add(&">

Home  >  Article  >  Backend Development  >  How to compare two lists and add the difference to a third list in C#?

How to compare two lists and add the difference to a third list in C#?

WBOY
WBOYforward
2023-09-17 19:21:03673browse

如何在 C# 中比较两个列表并将差异添加到第三个列表?

First, set up two lists -

list one

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

list two

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

find between the two lists and display the difference elements -

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

Here is a complete example of comparing two lists-

Example

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

The above is the detailed content of How to compare two lists and add the difference to a third list in C#?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete