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
Union Using LINQ In C#.net
Union using LINQ in C#.net
int[] val1= { 1, 2, 3 };
int[] val2= { 2, 3, 4 };
var res = val1.Union(val2);
foreach (int val in res)
{
Console.WriteLine(val);
}




