Answers for "c# add new item to list"

C#
12

c# adding to a list

//Declaring that its a list
List<string> test = new List<string>(); 
test.Add("Hello")
Posted by: Guest on March-02-2020
2

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);
Posted by: Guest on May-13-2020

C# Answers by Framework

Browse Popular Code Answers by Language