C# Console LargestWindowHeight
Description
Console LargestWindowHeight
gets the largest possible
number of console window rows, based on the current font and screen resolution.
Syntax
Console.LargestWindowHeight
has the following syntax.
public static int LargestWindowHeight { get; }
Example
/*from ww w . j ava 2 s .c om*/
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Console.LargestWindowHeight);
}
}