IList<string> outputLines, errorLines; // generated new ProcessRunner(GetPathToExecutable(), null).Run(out outputLines, out errorLines)
Expected (as a matter of style):
IList<string> outputLines; IList<string> errorLines; new ProcessRunner(GetPathToExecutable(), null).Run(out outputLines, out errorLines)