Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

List C# add from List

List<string> initialList = new List<string>();
// Put whatever you want in the initial list
List<string> listToAdd = new List<string>();
// Put whatever you want in the second list
initialList.AddRange(listToAdd);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #List #add #List
ADD COMMENT
Topic
Name
6+1 =