获取 C# 中控制台的最大窗口高度和宽度
要获取控制台的最大窗口高度,代码如下 −
示例
using System; public class Demo{ public static void Main(string[] args){ Console.WriteLine("Largest Window Height of the Console = "+Console.LargestWindowHeight); } }
输出
这将产生以下输出 −
Largest Window Height of the Console = 58
示例
要获取控制台的最大窗口宽度,代码如下 −
using System; public class Demo{ public static void Main(string[] args){ Console.WriteLine("Largest Window Width of the Console = "+Console.LargestWindowWidth); } }
输出
这将产生以下输出 −
Largest Window Width of the Console = 190
广告