コード例 #1
0
            public InvokeTreeNode AddChild(Type type)
            {
                var child = new InvokeTreeNode();

                this.children.Add(type, child);
                return(child);
            }
コード例 #2
0
 public InvokeTree()
 {
     this.root = new InvokeTreeNode();
 }
コード例 #3
0
 public InvokeTreeNode AddChild(Type type)
 {
     var child = new InvokeTreeNode();
     this.children.Add(type, child);
     return child;
 }
コード例 #4
0
 public InvokeTree()
 {
     this.root = new InvokeTreeNode();
 }