public LTree(LType rootVal) { this.Root = new LTreeNode <LType>(rootVal); }
public void AddChild(LTreeNode <LType> child) { Children.Add(child); }