C#对象实例化期间的属性初始化

示例

实例化对象时可以设置属性。

var redCar = new Car 
{
    Wheels = 2,
    Year = 2016,
    Color = Color.Red
};