Gnip.Client.Resource.Rules.DeepEquals C# (CSharp) Method

DeepEquals() public method

Determins if this equals that by performing a deep equals looking at all elements of all member listsand objects.
public DeepEquals ( Rules that ) : bool
that Rules The object to compare for equality.
return bool
        public bool DeepEquals(Rules that)
        {
            if (this == that)
                return true;
            else if (that == null)
                return false;

            return ListUtils.AreDeepEqual<Rule>(this.Items, that.Items);
        }

Same methods

Rules::DeepEquals ( object o ) : bool