Skip to content

Instantly share code, notes, and snippets.

@sjehutch
Created August 2, 2020 13:38
Show Gist options
  • Save sjehutch/822935cf86773c648757512faad8b24e to your computer and use it in GitHub Desktop.
Save sjehutch/822935cf86773c648757512faad8b24e to your computer and use it in GitHub Desktop.
Basic Getter Setter Xamarin
private string _fullname;
public string FullName
{
protected set
{
if (_fullname != value)
{
_fullname = value;
OnPropertyChanged("FullName");
}
}
get { return _fullname; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment