Skip to content

Instantly share code, notes, and snippets.

View jozefchmelar's full-sized avatar
💭
writing bugs, fixing code

Jokinko jozefchmelar

💭
writing bugs, fixing code
View GitHub Profile
@jozefchmelar
jozefchmelar / OnPropertyChanged.cs
Last active July 30, 2019 06:12
NotifyPropertyChanged implementation
set { _identity = value; OnPropertyChanged(nameof(Identity)); }
protected void OnPropertyChanged([CallerMemberName] string propertyName = null) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));