可能重复:
在 C# 程序中嵌入外部可执行文件
我创建项目“MyProj”并添加到资源程序“This.exe”...
如何在“MyProj.exe”中启动“this.exe”?
感谢您的任何想法。
Once you added the .exe to your project, got to the properties window then change the Build action
to Content
and Copy to output directory
to Always Copy
or Copy if newer
To run the Application use :
Process.Start("This.exe");
按F5或转到Debug -> Start Debugging
(这与点击Play
按钮相同)。
如果您不想调试,请按Ctrl+F5或转到Debug -> Start without debugging
.
编辑: 经过作者的编辑,我认为这就是答案:Launching an application (.EXE) from C#?