📜  c# 将多个项目添加到列表 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:54.186000             🧑  作者: Mango

代码示例1
List listofPersons = new List();
listofPersons.AddRange(new List
{
    new Person("John1", "Doe" ),
    new Person("John2", "Doe" ),
    new Person("John3", "Doe" ),
 });