I would like to run c# executable file abc.exe at the end of c++ managed project main functionality. abc.exe needs to run asynchronously without disturbing the c++ managed project even it encounter any errors.
I have found that process run .exe async but what if .exe encounter any error will that exe c++ managed project?
Process ^p;
ProcessStartInfo ^pInfo;
pInfo = gcnew ProcessStartInfo();
pInfo->Verb = "open";
pInfo->FileName = "d:\\abc.exe";
pInfo->UseShellExecute = true;
p = Process::Start(pInfo);