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:
You can launch any EXE using CreatePocess or ShellExecute API. ( including C#.Net)
Yes - for example using system function or CreateProcess \ CreateProcessW \ CreateProcessA [or fork+ exexif you use *nix + mono]
system
fork
exex