Exemplo n.º 1
0
 public TreeNode <CustomTag> OnTagEnd(CustomTag tag)
 {
     return(RemoveChild());
 }
Exemplo n.º 2
0
 TreeNode <CustomTag> AddChild(CustomTag node)
 {
     currentNode = currentNode.AddChild(node);
     return(currentNode);
 }
Exemplo n.º 3
0
 public TreeNode <CustomTag> OnTagBegin(CustomTag tag)
 {
     return(AddChild(tag));
 }