Ejecutar un programa externo
CodeKeep C# Feed Maggio 25th, 2008
Description: Ejecutar un programa externo
Link: http://www.codekeep.net/snippets/f2f35277-cff6-487a-a3fa-76ab693d9f42.aspx
class Program
{
static void Main(string[] args) {
System.Diagnostics.Process myProcess = new System.Diagnostics.Process();
myProcess.EnableRaisingEvents = false;
System.Diagnostics.ProcessStartInfo myStarInfo = new System.Diagnostics.ProcessStartInfo("C:\\Archivos de programa\\Notepad 2rc\\Notepad2.exe", "");
myProcess.StartInfo = myStarInfo;
myProcess.Start();
}
}






