public string GetText()
 {
     if (currentNode == null)
     {
         return("");
     }
     return(currentNode.GetText());
 }