Answers for "c# inotifypropertychanged best practices"

C#
0

c# inotifypropertychanged best practices

public event PropertyChangedEventHandler PropertyChanged;

// This method is called by the Set accessor of each property.
// The CallerMemberName attribute that is applied to the optional propertyName
// parameter causes the property name of the caller to be substituted as an argument.
private void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
{
  if (PropertyChanged != null)
  {
    PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
  }
}
Posted by: Guest on May-06-2020

Code answers related to "c# inotifypropertychanged best practices"

C# Answers by Framework

Browse Popular Code Answers by Language