Maison > Article > développement back-end > Comment copier une collection dans un tableau en utilisant C# ?
Pour copier une collection dans un tableau, définissez-la d'abord sur −
List < string > list1 = new List < string > (); list1.Add("Car"); list1.Add("Bus"); list1.Add("Motorbike"); list1.Add("Train");
Déclarez maintenant un tableau de chaînes et copiez −
string[] arr = new string[20]; list1.CopyTo(arr);en utilisant la méthode CopyTo()
Voyons le code complet pour copier une collection dans un tableau −
using System; using System.Collections.Generic; using System.Linq; public class Demo { public static void Main() { List < string > list1 = new List < string > (); list1.Add("Car"); list1.Add("Bus"); list1.Add("Motobike"); list1.Add("Train"); 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); } } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!