Solved

When Adding a Node to a Tree Use

Question 12

Multiple Choice

When adding a node to a tree use:


A) treeView.Nodes[ parentIndex ].Nodes.Add(new TreeNode(ChildLabel) )
B) treeView.Node[parentIndex].Add(new TreeNode(ChildLabel) )
C) treeView.Node[parentIndex].Add(ChildLabel)
D) treeView.Node[parentIndex].Nodes.Add(ChildLabel)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions