Example #1
0
        public override void Parse(List <string> values, CliArguments cliArguments)
        {
            if (values.Count != 0)
            {
                throw new ArgumentException("No wait flag cannot take any arguments");
            }

            cliArguments.PauseOnFinish = false;
        }
Example #2
0
 /**
  * Parses values for the argument and adjusts compiler arguments.
  */
 public abstract void Parse(List <string> values, CliArguments cliArguments);
Example #3
0
 public override void Parse(List <string> values, CliArguments cliArguments)
 {
     // Do nothing, this is a test
 }