📜  C#|如何更改控制台的WindowWidth

📅  最后修改于: 2021-05-29 17:07:49             🧑  作者: Mango

给定普通的C#控制台,任务是更改控制台的WindowWidth。

方法:可以使用C#中System包的Console类中的WindowWidth属性来完成此操作。 WindowWidth是指控制台窗口的宽度(以列为单位)。

程序1:获取WindowWidth的值

// C# program to illustrate the
// Console.WindowWidth Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    static void Main(string[] args)
    {
  
        // Get the WindowWidth
        Console.WriteLine("Current WindowWidth: {0}",
                                Console.WindowWidth);
    }
}
}

输出:

程序2:设置WindowWidth的值

// C# program to illustrate the
// Console.WindowWidth Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    static void Main(string[] args)
    {
  
        // Get the WindowWidth
        Console.WriteLine("Current WindowWidth: {0}",
                                Console.WindowWidth);
  
        // Set the WindowWidth
        Console.WindowWidth = 150;
  
        // Get the WindowWidth
        Console.Write("Current WindowWidth: {0}",
                            Console.WindowWidth);
    }
}
}

输出:

注意:在两个图像中都请参见“窗口的宽度”。