我正在学习 ASP.NET MVC,我可以阅读英文文档,但我不太明白这段代码中发生了什么:
public class Genre { public string Name { get; set; } }
这是什么意思:{ get; set; }?
{ get; set; }
这是一个所谓的自动属性,本质上是以下内容的简写(编译器将生成类似的代码):
private string name; public string Name { get { return this.name; } set { this.name = value; } }