Baseline.Reflection.PropertyValueGetter.Equals C# (CSharp) Method

Equals() public method

public Equals ( PropertyValueGetter other ) : bool
other PropertyValueGetter
return bool
        public bool Equals(PropertyValueGetter other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return other._propertyInfo.PropertyMatches(_propertyInfo);
        }

Same methods

PropertyValueGetter::Equals ( object obj ) : bool