C# Console.WindowWidth 属性


WindowWidth 属性获取或设置控制台窗口的宽度。

声明一个变量。

int width;

现在,获取当前窗口的宽度。

width = Console.WindowWidth;

以下是完成的示例。

示例

 实时演示

using System;
using System.Numerics;
using System.Globalization;
class Demo {
   static void Main() {
      int width;
      int height;
      width = Console.WindowWidth;
      height = Console.WindowHeight;
      Console.WriteLine("Current window width = "+width);
      Console.WriteLine("Current window height = "+height);
   }
}

输出

Current window width = 0
Current window height = 0

更新日期:2020-06-23

298 条浏览

开启你的 职业生涯

完成课程并获得认证

开始学习
广告