Launch C# .Net Application from C++

前端 未结 2 1728
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-22 09:25

Is it possible to launch a C#.Net (2.0) application from an application written in C++???

Thanks,

EDIT: Cool - so I just have to know where the app is:



        
相关标签:
2条回答
  • 2021-01-22 09:32

    You can launch any EXE using CreatePocess or ShellExecute API. ( including C#.Net)

    0 讨论(0)
  • 2021-01-22 09:37

    Yes - for example using system function or CreateProcess \ CreateProcessW \ CreateProcessA [or fork+ exexif you use *nix + mono]

    0 讨论(0)
提交回复
热议问题