list2=newList Home >
Article > Backend Development > How to compare two lists and add the difference to a third list in C#? First, set up two lists - find between the two lists and display the difference elements - Here is a complete example of comparing two lists- 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!How to compare two lists and add the difference to a third list in C#?
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");
IEnumerable < string > list3;
list3 = list1.Except(list2);
foreach(string value in list3) {
Console.WriteLine(value);
}
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);
}
}
}