/// <summary> /// Run the python script for the HelloWorldPython. /// </summary> private void RunPythonScript() { // Set the python script. string pythongArg = Cfg.Name; // Run the python script. RunFile.RunPython(Cfg.PythonPath, HelloWorldPythonScriptPath, pythongArg); }
private void RunPythonScript() { string pythonArg = $"{Cfg.Name} {Cfg.RepeatCount}"; RunFile.RunPython(Cfg.PythonPath, PythonScriptPath, pythonArg); }