我正在尝试找出将复杂对象添加到列表中的语法。这是我所知道的有效方法:
ComplexObject temp = new ComplexObject() {attribute1 = 5, attribute2 = 6};
ComplexObjectList.Add(temp);
这就是我想要做的:
ComplexObjectList.Add(new ComplexObject(){attribute1 = 5, attribute2 = 6});
我意识到它不起作用,但是有没有其他方法可以在我的列表中添加一个而不事先创建一个?除了这个函数调用之外,我不需要 temp 。