Raven.Database.Storage.ReduceKeyAndBucket.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( ReduceKeyAndBucket other ) : bool
other ReduceKeyAndBucket
return bool
		protected bool Equals(ReduceKeyAndBucket other)
		{
			return Bucket == other.Bucket && string.Equals(ReduceKey, other.ReduceKey);
		}

Same methods

ReduceKeyAndBucket::Equals ( object obj ) : bool