Create the Intersect query : Intersect « LINQ « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;


public class MainClass{

   public static void Main(string[] args){   
         String[] First = { "One", "Two", "Two", "Three", "Four" };
         String[] Second = { "Three", "Four", "Five", "Six" };

         var ShowIntersect = First.Intersect(Second);

         Console.WriteLine("Intersect:");
         foreach (String ThisElement in ShowIntersect)
            Console.WriteLine(ThisElement);

   }
}








22.50.Intersect
22.50.1.Using Linq Intersect to intersect two arrays
22.50.2.prints a list of numbers that are common to two integer arrays.
22.50.3.prints the first letter of a Product name and the first letter of a Customer name.
22.50.4.Intersect Operator
22.50.5.Set Operators: Intersect
22.50.6.Create the Intersect query