コード例 #1
0
ファイル: Executor.cs プロジェクト: Morigun/NNSol
 public void setArguments(ComLibTools.Entityes.ACommand command, System.Collections.Generic.List <string> Args)
 {
     if (command != null)
     {
         command.setArgs(Args);
     }
 }
コード例 #2
0
ファイル: Executor.cs プロジェクト: Morigun/NNSol
 public void execute(ComLibTools.Entityes.ACommand command)
 {
     if (command != null)
     {
         command.Execute();
     }
 }