Ejemplo n.º 1
0
 public NestedCommandTypeHelper this[Type t]
 {
     get
     {
         if(!_nestedCommands.ContainsKey(t))
             _nestedCommands[t] = new NestedCommandTypeHelper();
         return _nestedCommands[t];
     }
 }
Ejemplo n.º 2
0
 public NestedCommandNameHelper()
 {
     Commands = new HashSet<ICommand>();
     TypeHelper = new NestedCommandTypeHelper();
 }