public InvokeTreeNode AddChild(Type type) { var child = new InvokeTreeNode(); this.children.Add(type, child); return(child); }
public InvokeTree() { this.root = new InvokeTreeNode(); }
public InvokeTreeNode AddChild(Type type) { var child = new InvokeTreeNode(); this.children.Add(type, child); return child; }