Skip to content

Instantly share code, notes, and snippets.

@axemastabloggists
Created August 14, 2018 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save axemastabloggists/fcf946ae35be6dc1d66c654e8cc8c102 to your computer and use it in GitHub Desktop.
Save axemastabloggists/fcf946ae35be6dc1d66c654e8cc8c102 to your computer and use it in GitHub Desktop.
Data Persistence Properties Blog - Gist 11
#endregion OnCommand Methods
#region PropertyChanged Methods
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
#endregion PropertyChanged Methods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment