Example #1
0
 public SimpleTreeNode(SimpleTreeNode <T> Parent)
 {
     this.Parent = Parent;
     Children    = new SimpleTreeNodeList <T>(this);
 }
Example #2
0
 public SimpleTreeNode(T Value)
 {
     this.Value = Value;
     Children   = new SimpleTreeNodeList <T>(this);
 }
Example #3
0
 public SimpleTreeNode(SimpleTreeNode <T> Parent, SimpleTreeNodeList <T> Children)
 {
     this.Parent     = Parent;
     this.Children   = Children;
     Children.Parent = this;
 }
Example #4
0
 public SimpleTreeNode()
 {
     Parent   = null;
     Children = new SimpleTreeNodeList <T>(this);
 }
Example #5
0
 public SimpleTreeNode(SimpleTreeNodeList <T> Children)
 {
     Parent          = null;
     this.Children   = Children;
     Children.Parent = this;
 }