Union Operator : Union « LINQ « C# / CSharp Tutorial






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

public class MainClass {
    public static void Main() {
        string[] presidents = {"ant", "arding", "arrison", "eyes", "over", "ackson"};
        IEnumerable<string> first = presidents.Take(5);
        IEnumerable<string> second = presidents.Skip(4);
        IEnumerable<string> concat = first.Concat<string>(second);
        IEnumerable<string> union = first.Union<string>(second);

        Console.WriteLine("The count of the array is: " + presidents.Count());
        Console.WriteLine("The count of the first sequence is: " + first.Count());
        Console.WriteLine("The count of the second sequence is: " + second.Count());
        Console.WriteLine("The count of the concat sequence is: " + concat.Count());
        Console.WriteLine("The count of the union sequence is: " + union.Count());

    }
}








22.20.Union
22.20.1.Create the Union query
22.20.2.Use Linq to union two arrays
22.20.3.prints the unique elements of two integer arrays
22.20.4.prints unique letters from Product and Customer names
22.20.5.Union Operator
22.20.6.Union does appends one sequence to another with duplicates removed:
22.20.7.Set Operators: Union