Answers for "c# add multiple items to list"

C#
0

c# add multiple items to list

List<Person> listofPersons = new List<Person>();
listofPersons.AddRange(new List<Person>
{
    new Person("John1", "Doe" ),
    new Person("John2", "Doe" ),
    new Person("John3", "Doe" ),
 });
Posted by: Guest on April-06-2021

C# Answers by Framework

Browse Popular Code Answers by Language