Copies all list items into the beginning of the specified array.
Using:
1 2 3 |
list.CopyTo(arr); |
Example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main(string[] args) { var listA = new List<int>(); listA.Add(100); listA.Add(200); listA.Add(300); listA.Add(400); listA.Add(500); listA.Add(600); listA.Add(700); int[] arr = new int[5]; listA.CopyTo(arr); Console.ReadLine(); } } |