Exemplo n.º 1
0
        public List <string> GetAllEntries()
        {
            List <string> items = new List <string>();

            _root.Reconstruct(new Stack <char>(), items);
            return(items);
        }