Amoeba.Windows.TreeViewModelBase.NotifyPropertyChanged C# (CSharp) Method

NotifyPropertyChanged() protected method

protected NotifyPropertyChanged ( string info ) : void
info string
return void
        protected void NotifyPropertyChanged(string info)
        {
            this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(info));
        }