c#

c# intersect复杂吗

小樊
81
2024-11-22 06:40:54
栏目: 编程语言

C# 中的 Intersect 方法用于获取两个集合的交集。这个方法的实现并不复杂,它基于 LINQ (Language Integrated Query) 提供了简洁的语法来处理集合操作。

以下是一个简单的示例,展示了如何使用 Intersect 方法:

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<int> list1 = new List<int> { 1, 2, 3, 4, 5 };
        List<int> list2 = new List<int> { 4, 5, 6, 7, 8 };

        var intersection = list1.Intersect(list2);

        Console.WriteLine("Intersection:");
        foreach (var item in intersection)
        {
            Console.WriteLine(item);
        }
    }
}

输出:

Intersection:
4
5

在这个示例中,我们创建了两个整数列表 list1list2,然后使用 Intersect 方法找到它们的交集。最后,我们遍历交集并将结果输出到控制台。

总的来说,C# 中的 Intersect 方法并不复杂,它提供了一种简洁的方式来处理集合的交集操作。

0
看了该问题的人还看了