亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
阿坝县| 松原市| 布拖县| 曲阜市| 呼伦贝尔市| 稷山县| 松桃| 桑日县| 遂川县| 霸州市| 花莲县| 虞城县| 融水| 芜湖县| 聂荣县| 徐州市| 云龙县| 镇沅| 广灵县| 上犹县| 绍兴市| 平阴县| 长汀县| 乐安县| 宜州市| 东平县| 盱眙县| 出国| 和田县| 民勤县| 大理市| 垫江县| 马尔康县| 松江区| 民丰县| 丹凤县| 台山市| 天气| 遂宁市| 泊头市| 德州市|