1
[CallerMemberName] è lento rispetto alle alternative durante l'implementazione di INotifyPropertyChanged?
Ci sono buoni articoli che suggeriscono diversi modi per l'implementazioneINotifyPropertyChanged . Considera la seguente implementazione di base: class BasicClass : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private void FirePropertyChanged(string propertyName) { var handler = PropertyChanged; if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName)); } private int sampleIntField; public int SampleIntProperty { …