Patcher.Rules.ObjectDumper.Enter C# (CSharp) Method

Enter() public method

public Enter ( ) : bool
return bool
        public bool Enter()
        {
            if (currentDepth >= maxDepth - 1)
            {
                DoDump(string.Format("{0}...", indents[maxDepth - 1]));
                return false;
            }

            currentDepth++;
            return true;
        }