c#

c# intersect有效果吗

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

在C#中,Intersect方法用于获取两个集合的交集。这个方法对于判断一个集合是否包含另一个集合中的元素非常有用。Intersect方法会返回一个新的集合,其中包含两个集合中都存在的元素。

下面是一个简单的示例:

using System;
using System.Collections.Generic;

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 };

        List<int> intersection = list1.Intersect(list2).ToList();

        Console.WriteLine("Intersection: " + string.Join(", ", intersection));
    }
}

输出结果:

Intersection: 4, 5

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

需要注意的是,Intersect方法会返回一个新的集合,而不是修改原始集合。如果你想要修改原始集合,可以使用IntersectWith方法。

0
看了该问题的人还看了