コード例 #1
0
 protected TreeNode(object tag)
 {
     this.children = new List <T>();
     this.id       = TreeNodes.NextIdCounter();
     this.tag      = tag;
 }
コード例 #2
0
 protected ListItem(object tag)
 {
     this.id  = TreeNodes.NextIdCounter();
     this.tag = tag;
 }