C# 中的 Intersect
方法用于获取两个集合的交集。这个方法的实现并不复杂,它基于 LINQ (Language Integrated Query) 提供了简洁的语法来处理集合操作。
以下是一个简单的示例,展示了如何使用 Intersect
方法:
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main() { Listlist1 = new List { 1, 2, 3, 4, 5 }; List list2 = new List { 4, 5, 6, 7, 8 }; var intersection = list1.Intersect(list2); Console.WriteLine("Intersection:"); foreach (var item in intersection) { Console.WriteLine(item); } } }
输出:
Intersection: 4 5
在这个示例中,我们创建了两个整数列表 list1
和 list2
,然后使用 Intersect
方法找到它们的交集。最后,我们遍历交集并将结果输出到控制台。
总的来说,C# 中的 Intersect
方法并不复杂,它提供了一种简洁的方式来处理集合的交集操作。