在什么情况下我们应该在c#中使用Auto-Implemented属性?

时间:2017-06-16 03:55:12

标签: c# .net syntax properties

只想知道何时练习普通属性声明和自动实现的属性

私有实例变量和属性:

{
    "sdk": { "version" : "1.0.3" }
}

自动实现的属性:

private string apple;
public string Apple
{
    get{return apple;}
    set{apple=value;}
}

想知道何时使用哪个。

0 个答案:

没有答案