Patcher.Rules.ObjectDumper.Enter C# (CSharp) 메소드

Enter() 공개 메소드

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

            currentDepth++;
            return true;
        }