I am trying to print 1820 lines in C# console window. However, when the printing is done and I view the console window, I can see only 300 lines. What is the problem here?
When I write to file, I can see 1820 lines! So, I have narrowed down the problem to the OUTPUT console window
I am trying to print 1820 lines in C# console window. However, when the
Share
Adjust the buffer size for the window:
If you need more than this then you need to use a GUI or write to a file and view it in a text editor.