--Vamsi Effective Blogs
"Make everything as simple as possible but not simpler"--
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