Set the process' command and arguments from an array.
Remarks: The first element of the array must be the name of the process' executable.
the arguments that were set.
void example ( ) { auto p = new Process; p.argsWithCommand(["myprogram", "first", "second argument", "third"]); }
See Implementation
Set the process' command and arguments from an array.
Remarks: The first element of the array must be the name of the process' executable.