public bool Equals(TypeMapDefinition other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(Equals(other.Source, Source) && Equals(other.Destination, Destination)); }
public bool Equals(TypeMapDefinition other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Equals(other.Source, Source) && Equals(other.Destination, Destination); }