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; }
/** * Parses values for the argument and adjusts compiler arguments. */ public abstract void Parse(List <string> values, CliArguments cliArguments);
public override void Parse(List <string> values, CliArguments cliArguments) { // Do nothing, this is a test }