1
[CallerMemberName] có chậm so với các lựa chọn thay thế khi triển khai INotifyPropertyChanged không?
Có những bài báo hay đề xuất nhiều cách khác nhau để thực hiệnINotifyPropertyChanged . Hãy xem xét cách triển khai cơ bản sau: class BasicClass : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private void FirePropertyChanged(string propertyName) { var handler = PropertyChanged; if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName)); } …