public SimpleTreeNode(SimpleTreeNode <T> Parent) { this.Parent = Parent; Children = new SimpleTreeNodeList <T>(this); }
public SimpleTreeNode(T Value) { this.Value = Value; Children = new SimpleTreeNodeList <T>(this); }
public SimpleTreeNode(SimpleTreeNode <T> Parent, SimpleTreeNodeList <T> Children) { this.Parent = Parent; this.Children = Children; Children.Parent = this; }
public SimpleTreeNode() { Parent = null; Children = new SimpleTreeNodeList <T>(this); }
public SimpleTreeNode(SimpleTreeNodeList <T> Children) { Parent = null; this.Children = Children; Children.Parent = this; }