TreeNodeCollection
EX1
void TreeNodeCollection_ex1() { Tree tree; if(tree) { tree.AddNode(); tree.AddNumericNode(1); tree.AddNumericNode(2); tree.AddNumericNode(3, "I333"); tree.AddNumericNode(4); TreeNodeCollection tnc(tree, "int"); foreach(TreeNode tn in tnc) { string str = tn.tagName; out_str(str); } } }
origin.h