[Solved] How to execute a c# exe from a c++ program

[ad_1]

you could use ShellExecute(), ShellExecuteEx() or CreateProcess()…

ie.

HINSTANCE hInst = ShellExecute(0, "open", "c:\\windows\\notepad.exe",  "c:\\example.txt", 0, SW_SHOW);

0

[ad_2]

solved How to execute a c# exe from a c++ program