More line in console output of VS2010

Console.BufferHeight = x;
Console.BufferWidth = x;

Sets the height and width of the console buffer.


You can change the buffering settings of the console: right click the title bar of the console window and select "Properties." On the "Layout" tab, change the "Height" of the Screen Buffer to some large number (9999, for example).

Run your program again.

Of course, if you have a large amount of output that you need to inspect on a regular basis, it's probably best to write to a file instead.