Shell in C#

  • Thread starter Thread starter Justin
  • Start date Start date
J

Justin

Hi,

Is there a comparable shell statement for C#? In vb.net you just use
Shell(). I need to shell out a process from within C#.

Thanks.
 
Or for greater control if needed create a new process object. For example, you can get an event when the process ends.
 
Justin, check out the Process class in System.Diagnostics. Also,
groups.google.com, msdn.microsoft.com, and www.google.com are great places
to find answers like this.
 
Back
Top