지정된 컬렉션의 요소를 목록 끝에 추가하려면 코드는 다음과 같습니다. -
예
using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ List<string> list = new List<string>(); list.Add("Andy"); list.Add("Gary"); list.Add("Katie"); list.Add("Amy"); Console.WriteLine("Elements in List..."); foreach (string res in list){ Console.WriteLine(res); } string[] strArr = { "John", "Jacob" }; list.AddRange(strArr); Console.WriteLine("Elements in List...UPDATED"); foreach(String str in list){ Console.WriteLine(str); } } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Elements in List... Andy Gary Katie Amy Elements in List...UPDATED Andy Gary Katie Amy John Jacob
예
이제 다른 예를 살펴보겠습니다 -
using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ List<int> list = new List<int>(); list.Add(25); list.Add(50); list.Add(75); list.Add(100); Console.WriteLine("Elements in List..."); foreach (int val in list){ Console.WriteLine(val); } int[] intArr = { 150, 200, 250, 300 }; list.AddRange(intArr); Console.WriteLine("Elements in List...UPDATED"); foreach(int val in list){ Console.WriteLine(val); } } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Elements in List... 25 50 75 100 Elements in List...UPDATED 25 50 75 100 150 200 250 300