用C#程式碼執行一個程序
阿新 • • 發佈:2019-02-19
程式碼執行一個程序
使用語言:C#
環境:.net Framework 4.6.1 (當前使用) (貌似支援所有環境,我就不多說了)
using System.Diagnostics;
namespace GetNewProcess
{
class Program
{
static void Main(string[] args)
{
RunTheProcess();
}
private static void RunTheProcess()
{
//先宣告需要的類,匯入需要的程式集的空間名
Process p = new Process();
//指定我們程式所在的路徑
p.StartInfo.FileName = @"Jt.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardInput = true;
p.Start();
}
}
}