Beispiel #1
0
 public TreeNode(T Value)
 {
     this.Value  = Value;
     _Parent     = null;
     _ChildNodes = new TreeNodeList <T>(this);
 }
Beispiel #2
0
 public TreeNode(T Value, TreeNode <T> Parent)
 {
     this.Value  = Value;
     _Parent     = Parent;
     _ChildNodes = new TreeNodeList <T>(this);
 }
Beispiel #3
0
 public TreeNode()
 {
     _Parent     = null;
     _ChildNodes = new TreeNodeList <T>(this);
 }