當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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

相關用法


注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 C# Console.WindowWidth Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。