コード例 #1
0
ファイル: NestedCommandTypeHelper.cs プロジェクト: Gohla/Veda
 public NestedCommandTypeHelper this[Type t]
 {
     get
     {
         if(!_nestedCommands.ContainsKey(t))
             _nestedCommands[t] = new NestedCommandTypeHelper();
         return _nestedCommands[t];
     }
 }
コード例 #2
0
ファイル: NestedCommandNameHelper.cs プロジェクト: Gohla/Veda
 public NestedCommandNameHelper()
 {
     Commands = new HashSet<ICommand>();
     TypeHelper = new NestedCommandTypeHelper();
 }