private bool Equals(PropertyMember other) { return(Equals(Type, other.Type) && IsVirtual == other.IsVirtual && Equals(Getter, other.Getter) && Equals(Setter, other.Setter) && Equals(BackingField, other.BackingField) && string.Equals(Name, other.Name) && string.Equals(FullName, other.FullName) && Equals(DeclaringType, other.DeclaringType)); }
private bool Equals(PropertyMember other) { return(Equals(FullName, other.FullName)); }