CentralMonitor.Tool.NotifyPropertyChanged C# (CSharp) Méthode

NotifyPropertyChanged() public méthode

public NotifyPropertyChanged ( [ name = null ) : void
name [
Résultat void
        void NotifyPropertyChanged([CallerMemberName] string name = null)
        {
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
        }
        #endregion