Home
Manage Your Code
Snippet: start exe (C#)
Title: start exe Language: C#
Description: start exe Views: 114
Author: x y Date Added: 9/29/2008
Copy Code  
1            Process notePad = new Process();
2
3            notePad.StartInfo.FileName   = "notepad.exe";
4            notePad.StartInfo.Arguments = "ProcessStart.cs";
5
6            notePad.Start();