1class Program
2 {
3 static void Main(string[] args) {
4
5 System.Diagnostics.Process myProcess = new System.Diagnostics.Process();
6 myProcess.EnableRaisingEvents = false;
7 System.Diagnostics.ProcessStartInfo myStarInfo = new System.Diagnostics.ProcessStartInfo("C:\\Archivos de programa\\Notepad 2rc\\Notepad2.exe", "");
8 myProcess.StartInfo = myStarInfo;
9 myProcess.Start();
10
11 }
12
13 }