在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
以上是 在C#中获得控制台最大的窗口高度和宽度 的全部内容, 来源链接: utcz.com/z/316761.html