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

溫馨提示×

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
金昌市| 公主岭市| 芦山县| 屏东市| 德州市| 三江| 洛扎县| 丹巴县| 江门市| 平原县| 大庆市| 曲阳县| 龙门县| 孟村| 罗源县| 丘北县| 金华市| 营山县| 五常市| 庆安县| 随州市| 丰都县| 太白县| 福贡县| 维西| 鄂温| 墨江| 康定县| 丹棱县| 万盛区| 十堰市| 黄石市| 余姚市| 辛集市| 云龙县| 玉山县| 海淀区| 文山县| 青岛市| 景洪市| 尚义县|