TestData.NotifyPropertyChanged C# (CSharp) Method

NotifyPropertyChanged() private method

private NotifyPropertyChanged ( string name ) : void
name string
return void
    private void NotifyPropertyChanged(string name)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(name));
        }
    }