INotifyPropertyChanged를 구현할 때 [CallerMemberName]이 대안에 비해 느립니까?


98

구현을위한 다양한 방법을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]속성이 대안에 비해 성능이 좋지 않다는 것을 읽었습니다 . 그게 사실이고 그 이유는 무엇입니까? 반사를 사용합니까?

답변:


200

아니요, 의 사용은[CallerMemberName] 상위 기본 구현보다 느리지 않습니다 .

MSDN 페이지에 따르면

호출자 정보 값은 컴파일 타임에 IL (Intermediate Language)에 리터럴로 내보내집니다.

IL 디스어셈블러 (예 : ILSpy ) 를 사용하여 확인할 수 있습니다 . 속성의 "SET"작업에 대한 코드가 정확히 동일한 방식으로 컴파일됩니다. CallerMemberName을 사용하여 디 컴파일 된 속성

따라서 여기서 Reflection을 사용하지 않습니다.

(VS2013으로 컴파일 된 샘플)


2
동일한 링크이지만 프랑스어가 아닌 영어 : msdn.microsoft.com/en-us/library/hh534540(v=vs.110).aspx
Mike de Klerk

2
@MikedeKlerk 내가 지금 그렇게 했음에도 불구하고 왜 당신이 그것을 대답으로 직접 편집하지 않았는지 잘 모르겠습니다.
Ian Kemp
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.