Calling EXE's from C#

Hi friends,

   I want to call an exe from C# code.  in C we can use System("abc.exe") fuction to do this.  Can anybody tell me what is sol in C#



Answer this question

Calling EXE's from C#

  • maheshjadhav9

    System.Diagnostics.Process.Start(exefilenameName);

  • Calling EXE's from C#