C#如何调用外部exe程序

2025-03-03 04:42:07
推荐回答(1个)
回答1:

using System.Diagnostics;
public void openExe(string exePath)
{
    try
    {
        Process.Start(exePath);
    }
    catch
    { }
}