«callermembername» 태그된 질문

1
INotifyPropertyChanged를 구현할 때 [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 SampleIntProperty { get { return sampleIntField; } set …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.