TestData.NotifyPropertyChanged C# (CSharp) Метод

NotifyPropertyChanged() приватный Метод

private NotifyPropertyChanged ( string name ) : void
name string
Результат void
    private void NotifyPropertyChanged(string name)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(name));
        }
    }