callermembername पर टैग किए गए जवाब

1
क्या INTifyPropertyChanged को लागू करते समय विकल्पों की तुलना में [CallerMemberName] धीमा है?
अच्छे लेख हैं जो लागू करने के लिए अलग-अलग तरीकेINotifyPropertyChanged सुझाते हैं । निम्नलिखित बुनियादी कार्यान्वयन पर विचार करें: 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 …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.