Jul 13, 2012

How to call an exe added into project solution

Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "myExec.exe";
p.Start();

No comments:

Post a Comment