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

溫馨提示×

c# intersect可行嗎

c#
小樊
81
2024-11-22 06:32:53
欄目: 編程語言

在C#中,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 };

        var intersection = list1.Intersect(list2);

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

在這個示例中,我們創建了兩個整數列表list1list2,然后使用Intersect方法找到它們的交集。最后,我們遍歷并輸出交集中的元素。

請注意,Intersect方法返回一個新的集合,其中包含兩個輸入集合的公共元素。原始集合不會受到影響。

0
两当县| 额济纳旗| 汝南县| 吴江市| 法库县| 玉树县| 雷州市| 本溪市| 方城县| 会昌县| 湄潭县| 东台市| 周至县| 越西县| 新巴尔虎左旗| 泽普县| 曲麻莱县| 伊金霍洛旗| 卓资县| 丰县| 中江县| 兖州市| 龙里县| 高密市| 会宁县| 靖江市| 娄烦县| 噶尔县| 惠东县| 滨海县| 贞丰县| 泉州市| 广宗县| 隆安县| 和田县| 舞钢市| 彝良县| 体育| 镇赉县| 双流县| 夏河县|