What are you trying to achieve with this?
public String Username {get; protected set};
or
private String _username;
protected void setUserName(String argUsername);
{
if (_username != Username)
{
_username = value;
}
}
public String Username {get {return _username;} protected set {setUsername(value);}}
Your way to get CLS compliance, you will have to call you the pulky and prescribed versions of different names, which would be "confused."
source
share