.NetCoreでexeを呼出す
環境
- .Net Core 2.1
呼出方法
.Net Frameworkと同様に「System.Diagnostics.Process」クラスが利用できる
sample.cs
var proc = new System.Diagnostics.Process();
// exeファイルパス設定
proc.StartInfo.FileName = "exeへのフルパス";
// 引数設定
proc.StartInfo.ArgumentList.Add("引数");
// exe呼出
proc.Start();
// exeの終了を待つ
proc.WaitForExit();
参考