linq Except

linq Except

public static void Except()
        {
            int[] numbersA = { 0, 2, 4, 5, 6, 8, 9 };
            int[] numbersB = { 1, 3, 5, 7, 8 };

            IEnumerable aOnlyNumbers = numbersA.Except(numbersB);

            Console.WriteLine("Numbers in first array but not second array:");
            foreach (var n in aOnlyNumbers)
            {
                Console.WriteLine("{0}", n);
            }
        }
The returned the uncommon elements from the two array.
Output

Linq Set Operators
linq Except linq Except Reviewed by Bhaumik Patel on 6:49 PM Rating: 5