本帖最后由 zhenghq1001 于 2012-09-03 20:35:50 编辑

解决方案 »

  1.   

    var path = System.Environment.GetFolderPath(System.Environment.SpecialFolder.System);
    path = Path.Combine(path, "calc.exe");
    Process.Start(path);
      

  2.   

    PathProcess出现红色波浪线提示当前上下文中不存在名称“Path”提示当前上下文中不存在名称“Process”这是怎么回事呢?新手请教,谢谢
      

  3.   

    ProcessInfo info=new ProcessInfo("calc.exe");
    //...
    Process.Start(info);
      

  4.   

    添加命名空间
    using System.IO;
    using System.Dia...