Hazelcast.IO.Address.Equals C# (CSharp) Method

Equals() private method

private Equals ( Address other ) : bool
other Address
return bool
        private bool Equals(Address other)
        {
            return _port == other._port && string.Equals(_host, other._host) && _type == other._type;
        }

Same methods

Address::Equals ( object obj ) : bool