过去我们这样声明属性:
public class MyClass
{
private int _age;
public int Age
{
get{ return _age; }
set{ _age = value; }
}
}
现在我们可以做的是:
public class MyClass
{
public int Age {get; set;}
}
我的问题是,如何访问使用这种表示法自动创建的私有变量?
我宁愿访问私有变量,而不是公共访问器‘ Age’。是否存在访问私有变量的默认表示法,还是根本不可能?