DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Intersect Using LINQ In C#.net
Intersect using LINQ in C#.net
/ Assign two arrays.
int[] val1= { 1, 2, 3 };
int[] val2= { 2, 3, 4 };
var res= val1.Intersect(val2);
foreach (int val in res)
{
Console.WriteLine(val);
}





