Answers for "list add multiple items c# model"

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

Code answers related to "list add multiple items c# model"

C# Answers by Framework

Browse Popular Code Answers by Language