InsertRange() 메서드를 사용하여 C#의 기존 목록 사이에 목록을 삽입합니다. 이를 통해 기존 목록에 하나 이상의 요소를 쉽게 추가할 수 있습니다.
먼저 목록을 설정하겠습니다 -
List<int> arr1 = new List<int>(); arr1.Add(10); arr1.Add(20); arr1.Add(30); arr1.Add(40); arr1.Add(50);
이제 배열을 설정해 보겠습니다. 이 배열의 요소는 위의 목록에 추가할 것입니다 -
int[] arr2 = new int[4]; arr2[0] = 60; arr2[1] = 70; arr2[2] = 80; arr2[3] = 90;
위의 요소를 목록에 추가합니다 -
arr1.InsertRange(5, arr2);
다음은 전체 코드입니다 -
예시
using System; using System.Collections.Generic; public class Demo { public static void Main() { List<int> arr1 = new List<int>(); arr1.Add(10); arr1.Add(20); arr1.Add(30); arr1.Add(40); arr1.Add(50); Console.WriteLine("Initial List ..."); foreach (int i in arr1) { Console.WriteLine(i); } int[] arr2 = new int[4]; arr2[0] = 60; arr2[1] = 70; arr2[2] = 80; arr2[3] = 90; arr1.InsertRange(5, arr2); Console.WriteLine("After adding elements ..."); foreach (int i in arr1) { Console.WriteLine(i); } } }
출력
Initial List ... 10 20 30 40 50 After adding elements ... 10 20 30 40 50 60 70 80 90