中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C#中如何求兩個集合的交集

c#
小億
158
2024-04-02 10:41:02
欄目: 編程語言

在C#中,可以使用LINQ(Language Integrated Query)來求兩個集合的交集。下面是一個示例代碼:

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

        var intersection = list1.Intersect(list2);

        foreach (var num in intersection)
        {
            Console.WriteLine(num);
        }
    }
}

在上面的示例中,我們定義了兩個整數類型的List集合list1和list2。然后使用Intersect方法來求兩個集合的交集,并將結果存儲在intersection變量中。最后,使用foreach循環打印出交集的元素。

0
石阡县| 鄂州市| 上饶县| 化隆| 象州县| 乌鲁木齐市| 临猗县| 闽侯县| 嵊泗县| 北票市| 海盐县| 尚义县| 五峰| 永兴县| 巴彦县| 河东区| 江川县| 兰西县| 贵州省| 定州市| 绥江县| 平陆县| 湖北省| 定兴县| 乌审旗| 嘉兴市| 舒城县| 汝阳县| 星子县| 广安市| 彭州市| 思南县| 富源县| 闽侯县| 宣化县| 宁海县| 西乌珠穆沁旗| 登封市| 池州市| 利辛县| 南和县|