अच्छे लेख हैं जो लागू करने के लिए अलग-अलग तरीके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 SampleIntProperty
{
get { return sampleIntField; }
set
{
if (value != sampleIntField)
{
sampleIntField = value;
FirePropertyChanged("SampleIntProperty"); // ouch ! magic string here
}
}
}
}
मैं इसे इस एक के साथ बदलना चाहता हूं:
using System.Runtime.CompilerServices;
class BetterClass : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
// Check the attribute in the following line :
private void FirePropertyChanged([CallerMemberName] string propertyName = null)
{
var handler = PropertyChanged;
if (handler != null)
handler(this, new PropertyChangedEventArgs(propertyName));
}
private int sampleIntField;
public int SampleIntProperty
{
get { return sampleIntField; }
set
{
if (value != sampleIntField)
{
sampleIntField = value;
// no "magic string" in the following line :
FirePropertyChanged();
}
}
}
}
लेकिन कभी-कभी मैं पढ़ता हूं कि [CallerMemberName]
विकल्प की तुलना में विशेषता का प्रदर्शन खराब है। क्या यह सच है और क्यों? क्या यह प्रतिबिंब का उपयोग करता है?