c#中快速定义属性get/set 方法

public String gustName
{
get {
return this._gustName;
}
set {
this._gustName = value;
}
}

转载于:https://www.cnblogs.com/carl2380/archive/2012/08/17/2644412.html

你可能感兴趣的:(c#)