We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public class ViewModel : INotifyPropertyChanged { private int bar; public event PropertyChangedEventHandler PropertyChanged; public int Bar { get { return this.bar; } set { if (value == this.bar) { this.bar = value; ↓this.OnPropertyChanged(new PropertyChangedEventArgs(nameof(Bar))); } } } protected virtual void OnPropertyChanged(PropertyChangedEventArgs e) { this.PropertyChanged?.Invoke(this, e); } }
Clumsy and inefficient.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Clumsy and inefficient.
The text was updated successfully, but these errors were encountered: