Questions marquées «callermembername»

1
[CallerMemberName] est-il lent par rapport aux alternatives lors de l'implémentation d'INotifyPropertyChanged?
Il existe de bons articles qui suggèrent différentes manières de mettre en œuvreINotifyPropertyChanged . Considérez l'implémentation de base suivante: 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 …
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.