Geocoding.Google.BusinessKey.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( BusinessKey other ) : bool
other BusinessKey
리턴 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