Answers for "C# console app how to run another program"

C#
0

C# console app how to run another program

System.Diagnostics.Process pProcess = new System.Diagnostics.Process();
   pProcess.StartInfo.FileName = "c:\\analyze.exe"
   pProcess.StartInfo.Arguments = inputPath + " " + outputPath;
   pProcess.Start();
   pProcess.WaitForExit();
   pProcess.Close();
Posted by: Guest on February-09-2021

Code answers related to "C# console app how to run another program"

C# Answers by Framework

Browse Popular Code Answers by Language