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


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

ie.

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

0

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