Running an EXE from C# code

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to run an executable from within C# code. In the VB6 world, we would
use a Shell function to run an application. How would this be done in C#?
 
Robert said:
I need to run an executable from within C# code. In the VB6 world, we
would use a Shell function to run an application. How would this be done
in C#?

Look at the System.Diagnostics.Process object, including its Start method.
 
Back
Top