同上

解决方案 »

  1.   

    先加上using System.Diagnostics;
    如果这个exe是用C#编的,把它编绎类库也可以
      

  2.   

    using System.Diagnostics;
    ...
    Process.Start("explorer.exe","http://www.csdn.net");
      

  3.   

    最简单的方法:
    Process.Start("yourfile.exe");如果要做更多的控制,可以调API
      

  4.   

    System.Diagnostics.Process  p=new  System.Diagnostics.Process();  
    p.StartInfo.FileName="application.exe";
    p.Start();