C# 动态加载其它 .net exe
using System.Reflection;
string[] args = new string { "jixun" };
Assembly assembly = Assembly.LoadFile(@"C:\Fun.exe");
assembly.EntryPoint.Invoke(null, args);
加载运行后,将直接在当前 exe 名称下执行。
using System.Reflection;
string[] args = new string { "jixun" };
Assembly assembly = Assembly.LoadFile(@"C:\Fun.exe");
assembly.EntryPoint.Invoke(null, args);
加载运行后,将直接在当前 exe 名称下执行。
本作品采用知识共享署名-相同方式共享 4.0 国际许可协议进行许可。