In a C# console application I have discovered that you can use Console.SetWindowSize(160, 80);
to set the size of the console window. This is great, except for the fact that the maximum number of rows and columns is entirely dependent on the display resolution of the person's computer.
When you call Console.SetWindowSize()
and supply values that are too high the application throws an error and tells you what the maximum number of columns can be. This maximum number is different depending on your screen resolution. If SetWindowSize()
used pixels then getting the max would be easy.
Screen.PrimaryScreen.Bounds.Width
However, it doesn't use pixels. It uses columns. Is there any way to determine this max value for the console columns?
Console.LargestWindowWidth
Console.LargestWindowHeight
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With