Home > Backend Development > C#.Net Tutorial > Union, intersection and difference analysis of List in C#

Union, intersection and difference analysis of List in C#

黄舟
Release: 2017-09-18 11:03:58
Original
2702 people have browsed it

The union of sets is to merge the items of the sets, as shown below:


List<int> ls1 = new List<int>() { 1,2,3,5,7,9 };
List<int> ls2 = new List<int>() { 2,4,6,8,9,10};

IEnumerable<int> unionLs = ls1.Union(ls2);foreach (int item in unionLs)
{
    Console.Write("{0}\t", item);
}
Copy after login

##The intersection of sets is to take the common items of the sets, as shown in the following figure:


List<int> ls1 = new List<int>() { 1,2,3,5,7,9 };
List<int> ls2 = new List<int>() { 2,4,6,8,9,10};


IEnumerable<int> intersectLs = ls1.Intersect(ls2);foreach (int item in intersectLs)
{
    Console.Write("{0}\t",item);
}
Copy after login

The difference set of a set is to take all the items that are in this set but not in another set, as shown in the following figure:


List<int> ls1 = new List<int>() { 1,2,3,5,7,9 };
List<int> ls2 = new List<int>() { 2,4,6,8,9,10};


IEnumerable<int> exceptLs = ls1.Except(ls2);foreach (int item in exceptLs)
{
    Console.Write("{0}\t", item);
}
Copy after login

##

The above is the detailed content of Union, intersection and difference analysis of List in C#. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template