如何在C#代码中调用exe执行文件

日期:2021-11-12 02:33:56 人气:1

如何在C#代码中调用exe执行文件

using System.Diagnostics;
Process.Start("nodepad.exe");  // 把nodepad.exe换成要调用的exe执行文件完成路径
    A+
热门评论