One array expect another array : Except « LINQ « C# / C Sharp






One array expect another array

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

public class MainClass{
   public static void Main(){
            int[] numbers = {1, 2, 3, 4};
            int[] numbers2 = {1, 1, 3, 3};
            Console.Write(numbers.Except(numbers2));
   }
}

 








Related examples in the same category

1.Use Except to print numbers that are in one integer array, but not another
2.Use Except to print the first character of product names that aren't also the first character of customer names.
3.Except Prototype