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




