|
Children nodes
Sunday, 13 September 2009
Every node stores all children nodes in the Nodes property. To add or remove a child node you have two options:
Example: Node n1 = new Node(“1”); Node n2 = new Node(“2”); n2.AttachTo(n1); Node n3 = new Node(“3”); n2.Nodes.Add(n3);
|
|