Is there a way to write to the console in a WinForm project?
I know that I can change the project type to console and stills be a WinForm, but then if I launch my program from the CMD the execution of the CMD stops until my program exit, this not happens if I launch my app from the console as a Winforms but then I can't write to the console...
So the question is :
How to write to the console on a WinForms or how to don't stop the execution of the CMD when my app is launched from CMD (to avoid the use of "Start /B" on CMD for my application).