91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

C#中怎么實現多個集合的交集查找

c#
小億
166
2024-04-02 09:47:03
欄目: 編程語言

在C#中,可以使用LINQ來實現多個集合的交集查找。首先,將多個集合合并到一個集合中,然后使用LINQ的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> { 3, 4, 5, 6, 7 };
        List<int> list3 = new List<int> { 5, 6, 7, 8, 9 };

        var intersect = list1.Intersect(list2).Intersect(list3);

        foreach (var item in intersect)
        {
            Console.WriteLine(item);
        }
    }
}

在上面的示例中,我們首先將三個集合合并到一個集合中,然后使用Intersect方法查找它們的交集并打印輸出。當運行該代碼時,會輸出交集元素5。

通過這種方式,我們可以很方便地實現多個集合的交集查找。

0
邓州市| 东莞市| 连州市| 藁城市| 安陆市| 广饶县| 高州市| 旌德县| 灌云县| 阜平县| 个旧市| 逊克县| 稻城县| 宁海县| 米脂县| 江山市| 新密市| 凯里市| 星座| 黄骅市| 长岛县| 阳东县| 石阡县| 安国市| 长海县| 张北县| 镇巴县| 勐海县| 江安县| 新郑市| 吐鲁番市| 射阳县| 融水| 沙湾县| 武穴市| 湖州市| 镇原县| 澄迈县| 昌邑市| 六安市| 阳山县|