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

📅  最后修改于: 2021-05-29 22:55:42             🧑  作者: Mango

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

方法:可以使用C#中System包的Console类中的WindowHeight属性来完成此操作。 WindowHeight是指控制台窗口的高度,以行为单位。

程序1:获取WindowHeight的值

// C# program to illustrate the
// Console.WindowHeight 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 WindowHeight
        Console.WriteLine("Current WindowHeight: {0}",
                                Console.WindowHeight);
    }
}
}

输出:

程序2:设置WindowHeight的值

// C# program to illustrate the
// Console.WindowHeight 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 WindowHeight
        Console.WriteLine("Current WindowHeight: {0}",
                                Console.WindowHeight);
  
        // Set the WindowHeight
        Console.WindowHeight = 50;
  
        // Get the WindowHeight
        Console.Write("Current WindowHeight: {0}",
                            Console.WindowHeight);
    }
}
}

输出:

注意:请在两个图像中查看窗口的高度。