public bool Equals(PropertyBinderSelection other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(Equals(other.PropertyName, PropertyName) && Equals(other.PropertyType, PropertyType) && Equals(other.BinderType, BinderType)); }
public bool Equals(PropertyBinderSelection other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Equals(other.PropertyName, PropertyName) && Equals(other.PropertyType, PropertyType) && Equals(other.BinderType, BinderType); }