MVC(C#特性)

weixin_33895657發表於2017-09-20

使用自動實現的屬性

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

相關文章