CodeSharp.EventSourcing.Address.Equals C# (CSharp) Method

Equals() public method

Check this is equal to other Address
public Equals ( Address other ) : bool
other Address refrence addressed to be checked with this
return bool
        public bool Equals(Address other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Queue, Queue) && Equals(other.Machine, Machine);
        }

Same methods

Address::Equals ( object obj ) : bool