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

溫馨提示×

c# intersect有效果嗎

c#
小樊
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
南安市| 邮箱| 永川市| 同德县| 揭东县| 大名县| 兴仁县| 石楼县| 吴堡县| 龙海市| 乃东县| 调兵山市| 贞丰县| 宽甸| 晋城| 莲花县| 克拉玛依市| 荔波县| 中卫市| 任丘市| 辉县市| 从化市| 大悟县| 安乡县| 龙泉市| 讷河市| 沙雅县| 九江县| 阳曲县| 华宁县| 安塞县| 布尔津县| 石泉县| 板桥市| 凤庆县| 平遥县| 公主岭市| 苗栗市| 敦化市| 桂林市| 庐江县|