I have a WinForm project that I want to be usable as a console app if certain arguments are passed into it. Using some tips I read from here, I used the following code to m
It looks like there is no way around it:
1) If I want the output in console mode to behave like a dedicated console app, the console window must always be there.
2) If I want to hide the console when I run it in windowed mode, I will lose the blocking prints.