Bamboo.Prevalence.Indexing.Records.HashtableRecord.Equals C# (CSharp) Méthode

Equals() public méthode

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