Answers for "c# run external program with directory"

C#
3

c# how to run external program

Process ExternalProcess = new Process();
ExternalProcess.StartInfo.FileName = "Notepad.exe";
ExternalProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
ExternalProcess.Start();
ExternalProcess.WaitForExit();
Posted by: Guest on March-07-2020

C# Answers by Framework

Browse Popular Code Answers by Language