使用自动实现的属性
prop----(单击tab两次)--->public int MyProperty { get; set; }
public string Name { get; set; }
等效于
public string Name
{
get { return name; }
set { name = value; }
}
对象初始化器
Product mypro=new Product{
Name="皮艇",Price=100
};
等效于
Product mypro = new Product();
mypro.Name = "皮艇";
mypro.Price=100
网友评论