I have a Windows Forms app that is able to open up a console for debugging purposes. Everything is running fine except that I have noticed the following console-related issue:
Also, are there any performance-related issuess I need to be aware of?
Thanks for your help.
Windows consoles store a limited amount of text in their buffer.
Once you fill the buffer, every line you print will cause it to discard its oldest line.
You can change the buffer size in the console's Properties.