Exemplo n.º 1
0
 private void SysCmd_AddCustomCommand(RCProcess process, IList <string> args)
 {
     if (args.Count < 1)
     {
         return;
     }
     try
     {
         new RCProcess.CustomCommandParser(args[0]);
         process.AddSysCommand(args[0]);
         if (this.ProcessModify != null)
         {
             this.ProcessModify(this, process);
         }
     }
     catch
     {
     }
 }