You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public abstract class NotifyPropertyChangedBase : INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;
#if NET45_OR_GREATER || NETSTANDARD || NET
/// <summary>
/// This method is called by the Set accessor of each property. <br/>
/// The CallerMemberName attribute that is applied to the optional propertyName parameter causes the property name of the caller to be substituted as an argument.
/// </summary>
/// <param name="propertyName">The property name. Default to the caller.</param>