![]() |
List<T>.AddRange(IEnumerable<T>) Method is used to add the elements of the specified collection to the end of the List<T>. Properties of List:
Syntax: public void AddRange (System.Collections.Generic.IEnumerable<T> collection); Parameter:
Exception: This method will give ArgumentNullException if the collection is null. Note: The collection itself cannot be null, but it can contain elements that are null if type T is a reference type. The order of the elements in the collection is always preserved in the List<T>. Below programs illustrate the use of above discussed method: Example 1:
Output: Before AddRange Method Geeks GFG C# Tutorials After AddRange Method Geeks GFG C# Tutorials Geeks GFG C# Tutorials Example 2:
Output: Before AddRange Method Geeks GFG C# Tutorials After AddRange Method Geeks GFG C# Tutorials Collections Generic List Reference: |
Reffered: https://www.geeksforgeeks.org
C# |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 8 |