Функция возвращает элементы, присутствующие в первой, но отсутствующие во второй последовательности.
Main.cs
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { int[] ara1 = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int[] ara2 = new int[] { 1, 2, 3, 4, 5 }; var query = ara1.Except(ara2); foreach(var i in query) { Console.Write("{0} ", i); } Console.WriteLine(); Console.ReadKey(); return 0; } }
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { int[] ara1 = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int[] ara2 = new int[] { 1, 2, 3, 4, 5 }; var query = ara1.Except(ara2); foreach(var i in query) { Console.Write("{0} ", i); } Console.WriteLine(); Console.ReadKey(); return 0; } }
6 7 8 9 10