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));
        }
    }