I wrote a program in C ++. It just uses the console to make it as portable as possible. Unfortunately, many Windows users do not seem to understand how to use this program (Linux users are just fine) :). Therefore, I would like to write a graphical interface for this program. Since this needs to be run only for Windows, I would like to write it in C #.
But I want to keep the GUI separate from the original program. Basically, I need a way to include the compiled * .exe in another program. Is there a way to catch console output from another program and send data to it? Also, can I hide the console of the source program?
Related questions
How to run: Run command line in C #, get STD OUT results
Roman source
share