Example #1
0
        public TreeNavigator AddNode()
        {
            var pos = Backend.AddChild(null);

            return(new TreeNavigator(Backend, pos));
        }
Example #2
0
 public TreeNavigator AddChild()
 {
     pos = backend.AddChild(pos);
     return(this);
 }