我不知道这是 Visual Studio 中的错误或功能,但我发现至少在我的 VS 2010 上,如果我有课说:
public class Person
{
public int Age { get; set; }
public string Name { get; set; }
}
然后我有List<Person>
并且我想做如下的集合初始化:
public static List<Person> Persons = new List<Person>
{
new
};
如您所见,它没有提供Person
对象初始化程序,即使我按ctrl + space,它也没有出现。
有人对此有任何线索吗?