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