8
Sự đối lập của Intersect ()
Intersect có thể được sử dụng để tìm kết quả khớp giữa hai bộ sưu tập, như vậy: // Assign two arrays. int[] array1 = { 1, 2, 3 }; int[] array2 = { 2, 3, 4 }; // Call Intersect extension method. var intersect = array1.Intersect(array2); // Write intersection …
275
c#
.net
collections
intersect