获取 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

更新于:11-12-2019

193 浏览量

开启您的 职业生涯

完成课程,获得认证。

开始吧
广告