Функция преобразует элементы последовательности в коллекцию List.
Main.cs
using System; //добавить ссылку using System.Linq; using System.Collections.Generic; class Program { public static int Main() { int[] ara1 = new int[] {1, 2, 3, 4, 5}; List<int> ara2 = ara1.ToList(); foreach(var i in ara2) { Console.Write("{0} ",i); } Console.WriteLine(); Console.ReadKey(); return 0; } }
using System; //добавить ссылку using System.Linq; using System.Collections.Generic; class Program { public static int Main() { int[] ara1 = new int[] {1, 2, 3, 4, 5}; List<int> ara2 = ara1.ToList(); foreach(var i in ara2) { Console.Write("{0} ",i); } Console.WriteLine(); Console.ReadKey(); return 0; } }
1 2 3 4 5