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

溫馨提示×

c#集合怎樣進行合并操作

c#
小樊
81
2024-11-20 12:24:34
欄目: 編程語言

在C#中,可以使用Concat方法或Union方法來合并兩個集合。以下是兩種方法的示例:

方法1:使用Concat方法

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        List<int> list1 = new List<int> { 1, 2, 3 };
        List<int> list2 = new List<int> { 4, 5, 6 };

        List<int> mergedList = new List<int>(list1.Concat(list2));

        Console.WriteLine("Merged list: " + string.Join(", ", mergedList));
    }
}

方法2:使用Union方法

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        List<int> list1 = new List<int> { 1, 2, 3 };
        List<int> list2 = new List<int> { 4, 5, 6 };

        List<int> mergedList = new List<int>(list1.Union(list2));

        Console.WriteLine("Merged list: " + string.Join(", ", mergedList));
    }
}

在這兩個示例中,我們創建了兩個整數列表list1list2,然后使用ConcatUnion方法將它們合并到一個新的列表mergedList中。最后,我們輸出合并后的列表。注意,Union方法會自動去除重復的元素。

0
弋阳县| 正定县| 吴旗县| 清远市| 武陟县| 托克托县| 湄潭县| 柳州市| 二连浩特市| 舒兰市| 三亚市| 荔浦县| 江达县| 行唐县| 卓资县| 涟水县| 邹平县| 宝丰县| 惠来县| 鄂州市| 乐昌市| 新疆| 清河县| 什邡市| 共和县| 洛隆县| 宁强县| 那坡县| 方山县| 朝阳市| 三亚市| 双江| 东丰县| 旺苍县| 永吉县| 广安市| 瑞金市| 独山县| 乐东| 铅山县| 达州市|