C#에서 다른 목록에 목록 추가
Muhammad Maisam Abbas
2024년2월16일
이 자습서에서는 C#의 다른 목록 끝에 한 목록의 요소를 추가하는 방법에 대해 설명합니다.
C#에서List.AddRange()
함수를 사용하여 다른 목록에 목록 추가
한 목록의 요소를 다른 목록 끝에 추가하는 가장 쉬운 방법은 C#에서List.AddRange()
메서드를 사용하는 것입니다. List.AddRange(x)
메소드는 목록에x
컬렉션의 요소를 추가합니다. 다음 코드 예제는 C#의List.AddRange()
함수를 사용하여 한 목록을 다른 목록에 추가하는 방법을 보여줍니다.
using System;
using System.Collections.Generic;
namespace add_list {
class Program {
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
위 코드에서first
및second
의 2 개의 문자열 목록을 만들고 초기화했습니다. first.AddRange(second)
함수를 사용하여first
목록 끝에second
목록 요소를 추가했습니다. 마지막으로첫 번째
목록의 요소를 표시했습니다.
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