Plainly put, I have added as a resource to a visual studio project an exe file. How do I run this file? I'm coding in c#.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
You must use Process.Start method. See it in msdn
You can take Resource as byte[]
Also see here for more details
Hope this helps