How can I create a public getter and a private setter for a property? Is the following correct?
public String Password { set { this._password = value; } } p
public string Password { get; private set; }