close

請先匯入:using System.Diagnostics;

 

寫法一:

Process.Start (@"C:\Users\Est\Desktop\GodHand3D\GodHand3D.exe");

 

寫法二:

ProcessStartInfo open = new ProcessStartInfo ();
open.FileName = "GodHand3D.exe"; // 檔案名稱
open.WorkingDirectory = @"C:\Users\Est\Desktop\GodHand3D"; // 資料夾路徑
Process.Start (open);

 

 

 

 

 

 

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 黃彥霖 的頭像
    黃彥霖

    彥霖 實驗筆記

    黃彥霖 發表在 痞客邦 留言(5) 人氣()