IronJSON.JSONManager.CdBack C# (CSharp) Method

CdBack() public method

public CdBack ( ) : void
return void
        public void CdBack()
        {
            ArrayList tmpPath = (ArrayList)m_curPath.Clone();

            if (tmpPath.Count == 0)
                return;

            tmpPath.RemoveAt(m_curPath.Count - 1);
            Cd(Path.Absolute);
            foreach (object o in tmpPath)
                Cd(Path.Relative, o);
        }

Same methods

JSONManager::CdBack ( int times ) : void