public ISymbolInformation this[string index]
 {
     get
     {
         ChildrenHash.TryGetValue(index, out var value);
         return(value);
     }
     set => ChildrenHash.Add(index, value);
Exemple #2
0
 public void AddChild(ISymbolInformation child)
 {
     ChildrenHash.Add(child.Name, child);
 }