Exemplo n.º 1
0
            TemporaryGroup ReconstructTree()
            {
                TemporaryGroup g = this;

                while (g.Parent != null)
                {
                    g = g.ExitChild();
                }

                return(g);
            }