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