คำถามติดแท็ก intersect

8
ตรงข้ามของ Intersect ()
สามารถใช้ 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 } อย่างไรก็ตามสิ่งที่ฉันต้องการบรรลุคือสิ่งที่ตรงกันข้ามฉันต้องการแสดงรายการจากคอลเล็กชันหนึ่งที่หายไปจากรายการอื่น …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.