SyntaxFix
Write A Post
Hire A Developer
Questions
class ProcessStart { static void Main(string[] args) { Process notePad = new Process(); notePad.StartInfo.FileName = "notepad.exe"; notePad.StartInfo.Arguments = "ProcessStart.cs"; notePad.Start(); } }