c# winexec equivalent...

  • Thread starter Thread starter Daniel Bass
  • Start date Start date
D

Daniel Bass

in VC++ you could go WinExec("C:\\myExe.exe", "open");

how do i do this in C#?

can't find anything in MSDN...

Thanks. =o)
Dan.
 
Dan,

You will want to use the static Start method on the Process class to run
a new process.

Hope this helps.
 
Back
Top