对于有默认值的属性,不要直接用简写的{get;set;} ,写完整,例如: private string _aa = ""; public string aa { get {return _aa;} set {_aa=value;} }