C# 启动外部程序

  public static void QiDoProcess(string path)
        {
            Process m_Process = null;
            m_Process = new Process();
            m_Process.StartInfo.FileName = path;
            m_Process.Start();
        }

 

posted @ 2022-03-02 11:08  学竹  阅读(43)  评论(0编辑  收藏  举报