你应该是设置到获取的对象的值。比如这样。//这个设置默认值private string _test = "这是测试";public striing test{get {return _test; }set{_test = value;}}这样在不对这个属性进行设置的情况下,取道的就是默认值.