Exemplo n.º 1
0
 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];
 }
Exemplo n.º 2
0
 public void AddChild(Node node)
 {
     m_children[node.FullName] = node;
 }