Geocoding.Google.BusinessKey.Equals C# (CSharp) Method

Equals() public method

public Equals ( BusinessKey other ) : bool
other BusinessKey
return bool
		public bool Equals(BusinessKey other)
		{
			if (other == null) return false;
			return ClientId.Equals(other.ClientId) && SigningKey.Equals(other.SigningKey);
		}

Same methods

BusinessKey::Equals ( object obj ) : bool