怎样才能在C#桌面应用程序(winform)中调用运行EXE文件

2024-12-27 00:57:50
推荐回答(2个)
回答1:

private void Yyes_Load(object sender, System.EventArgs e)
{
System.Diagnostics.Process.Start("D:\File\lay.exe");
}

回答2:

System.Diagnostics.Process.Start("D:\File\lay.exe")