在 C# 中把列表添加到另一个列表

Muhammad Maisam Abbas 2022年12月21日 2021年4月29日
在 C# 中把列表添加到另一个列表

本教程将讨论在 C# 中将一个列表的元素添加到另一列表的末尾的方法。

使用 C# 中的 List.AddRange() 函数将列表添加到另一个列表

在一个列表的末尾附加一个列表元素的最简单方法是在 C# 中使用 List.AddRange() 方法。List.AddRange(x) 方法在列表中添加集合 x 的元素。以下代码示例向我们展示了如何使用 C# 中的 List.AddRange() 函数将一个列表添加到另一个列表。

using System;
using System.Collections.Generic;

namespace add_list
{
        static void Main(string[] args)
        {
            List<string> first = new List<string> { "do", "rey", "me" };
            List<string> second = new List<string> { "fa", "so", "la", "te" };
            first.AddRange(second);
            foreach(var e in first)
            {
                Console.WriteLine(e);

            }
        }
    }
}

输出:

do
rey
me
fa
so
la
te

在上面的代码中,我们创建并初始化了 2 个字符串列表,分别是 firstsecond。我们在 first 列表的末尾附加了 second 列表元素,并添加了 first.AddRange(second) 函数。最后,我们显示了 first 列表中的元素。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp List