源代码详情

返回代码列表
C++

外部程序

作者: 超级管理员 发布时间: 2025-11-05 01:02 下载次数: 22 最后更新: 2025-11-18 05:39
外部程序
using System.Diagnostics;
using UnityEngine;
public class OpenExeButton : MonoBehaviour
{
    public string exePath;
    public void OpenExe()
    {
        Process.Start(exePath);
    }
}