Lucene.Net.Facet.FacetResult.Equals C# (CSharp) Method

Equals() public method

public Equals ( object _other ) : bool
_other object
return bool
        public override bool Equals(object _other)
        {
            if ((_other is FacetResult) == false)
            {
                return false;
            }
            FacetResult other = (FacetResult)_other;
            return Value.Equals(other.Value) && ChildCount == other.ChildCount && Arrays.Equals(LabelValues, other.LabelValues);
        }