所以auto属性就是这样声明的:
int autoProp {get; private set;}
自动生成关联的成员变量的地方。
在GetType().GetProperties()
返回的属性列表中,有一种方法可以区分以下类中的两个属性:
class MyClass
{
int regularPropertyValue;
int regularProperty
{
get
{
return regularPropertyValue;
}
set
{
regularPropertyValue = value;
}
}
int autoProperty {get; private set;}
};