Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 24, 2022 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/46954cb8375018bef7badf1a840b2a1b to your computer and use it in GitHub Desktop.
Save lgolubyev/46954cb8375018bef7badf1a840b2a1b to your computer and use it in GitHub Desktop.
var process = new System.Diagnostics.Process();
var startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.FileName = "validatedCommand";
startInfo.Arguments = "validatedArg1 validatedArg2 validatedArg3";
process.StartInfo = startInfo; process.Start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment