Skip to content

Instantly share code, notes, and snippets.

@jozefchmelar
Last active July 30, 2019 06:12
Show Gist options
  • Save jozefchmelar/c824348d729d00793948328d7de0af39 to your computer and use it in GitHub Desktop.
Save jozefchmelar/c824348d729d00793948328d7de0af39 to your computer and use it in GitHub Desktop.
NotifyPropertyChanged implementation
set { _identity = value; OnPropertyChanged(nameof(Identity)); }
protected void OnPropertyChanged([CallerMemberName] string propertyName = null) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment