System.Diagnostics.ProcessStartInfo ps=new System.Diagnostics.ProcessStartInfo("my.exe");
System.Diagnostics.Process p=new System.Diagnostics.Process();
p.StartInfo=ps;
p.Start();
//my.exe是你要调用的程序,放在同一目录下