Bamboo.Prevalence.Indexing.Records.HashtableRecord.Equals C# (CSharp) Method

Equals() public method

Delegates to the internal hashtable.
public Equals ( object rhs ) : bool
rhs object
return bool
		public override bool Equals(object rhs)
		{
			HashtableRecord other = rhs as HashtableRecord;
			if (null == other)
			{
				return false;
			}
			return other._hashtable.Equals(_hashtable);
		}
	}