Gnip.Client.Resource.Activities.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 ( Activities that ) : bool
that Activities The object to compare for equality.
return bool
        public bool DeepEquals(Activities that)
        {
            if (this == that)
                return true;
            else if (that == null)
                return false;

            return (this.Publisher == that.Publisher &&
                ListUtils.AreDeepEqual<Activity>(this.Items, that.Items));
        }

Same methods

Activities::DeepEquals ( object o ) : bool