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