摘要:
这是C#中的属性 public string UserName { get { return this._username; } set { this._username = value; } } 通俗来讲..get是获取值 set是设置值比如这句:get { return this._username; } 如果调用这个get方法 就能获得方法return的 this._username(返回的值)调用方法:Console.Write(对象.UserName);(输出该属性的值)比如这句:set { this._username = value; } 如果调用这个set方法 就可以重新设置u 阅读全文