private Node GetNodeOrCreate(string type, string method) { string full = type + "." + method; if (!m_nodesTable.Contains(full)) { m_nodesTable[full] = new Node(type, method); } return (Node)m_nodesTable[full]; }
public void AddChild(Node node) { m_children[node.FullName] = node; }