Pattern for implementing INotifyPropertyChanged?

后端 未结 3 1419
野趣味
野趣味 2021-02-09 07:32

I have seen the following pattern used for implementing INotifyPropertyChanged

private void NotifyPropertyChanged(string propertyName)
{
    PropertyChangedEvent         


        
3条回答
  •  -上瘾入骨i
    2021-02-09 07:58

    It's the thread safe method of raising events. By assigning the publicly accessible PropertyChanged event locally before using it you ensure that it won't be different between the 'if' statement and the line actually raising the event.

提交回复
热议问题