發布時間:2020-11-30 15:35 作者:獨孤劍 閱讀:1407
using System; namespace DemoConsole { class Program { static void Main(string[] args) { // 方法一 System.Diagnostics.Process.Start("C:\\Windows\\system32\\cmd.exe"); // 方法二 System.Diagnostics.Process process = new System.Diagnostics.Process(); process.StartInfo.FileName = @"C:\\Windows\\system32\\cmd.exe"; process.StartInfo.UseShellExecute = true; process.Start(); } } }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞