Home >Backend Development >C#.Net Tutorial >What is the AddRange method in C# List?
The AddRange method in the list adds the entire collection of elements. Let us see an example -
First, set up a list in C# and add elements -
List<int> list = new List<int>(); list.Add(100); list.Add(200); list.Add(300); list.Add(400);
Now set the array of elements to be added to the list -
// array of 4 elements int[] arr = new int[4]; arr[0] = 500; arr[1] = 600; arr[2] = 700; arr[3] = 800;
Use AddRange() method adds the entire collection of elements to the list −
list.AddRange(arr);
Now let’s see the complete code and display the list −
using System; using System.Collections.Generic; class Demo { static void Main() { List<int> list = new List<int>(); list.Add(100); list.Add(200); list.Add(300); list.Add(400); // array of 4 elements int[] arr = new int[4]; arr[0] = 500; arr[1] = 600; arr[2] = 700; arr[3] = 800; list.AddRange(arr); foreach (int val in list) { Console.WriteLine(val); } } }
The above is the detailed content of What is the AddRange method in C# List?. For more information, please follow other related articles on the PHP Chinese website!