C# 목록 컬렉션을 배열에 복사하려면 먼저 목록을 설정하십시오 -
List <string> list1 = new List <string> (); list1.Add("One"); list1.Add("Two"); list1.Add("Three"); list1.Add("Four");
이제 문자열 배열을 선언하고 CopyTo() 메서드를 사용하여 복사 -
string[] arr = new string[20]; list1.CopyTo(arr);
목록을 1차원 배열로 복사하는 전체 코드를 살펴보겠습니다.
예시
using System; using System.Collections.Generic; using System.Linq; public class Demo { public static void Main() { List <string> list1 = new List <string> (); list1.Add("One"); list1.Add("Two"); list1.Add("Three"); list1.Add("Four"); Console.WriteLine("First list..."); foreach(string value in list1) { Console.WriteLine(value); } string[] arr = new string[20]; list1.CopyTo(arr); Console.WriteLine("After copy..."); foreach(string value in arr) { Console.WriteLine(value); } } }