İki Diziyi Karşılaştırma (asp.net C#)
Merhaba bu yazımızda "Intersect" ve "NonIntersect" kavramlarını göreceğiz. Bu kavramları iki dizi de kullanıp kesişen ve kesişmeyen sayıları bulmak için kullanacağız.
Kaynak: https://stackoverflow.com/questions/5620266/the-opposite-of-intersect
// Assign two arrays.
int[] array1 = { 1, 2, 3 };
int[] array2 = { 2, 3, 4 };
// Call Intersect extension method.
var intersect = array1.Intersect(array2);
// Write intersection to screen.
foreach (int value in intersect)
{
Console.WriteLine(value); // Output: 2, 3
}
// Assign two arrays.
int[] array1 = { 1, 2, 3 };
int[] array2 = { 2, 3, 4 };
// Call Intersect extension method.
var intersect = array1.NonIntersect(array2); // I've made up the NonIntersect method
// Write intersection to screen.
foreach (int value in intersect)
{
Console.WriteLine(value); // Output: 1, 4
}
Kaynak: https://stackoverflow.com/questions/5620266/the-opposite-of-intersect
Yorumlar
Yorum Gönder