Dada la Consola normal en C#, la tarea es cambiar el WindowHeight de la Consola.
Enfoque: esto se puede hacer usando la propiedad WindowHeight en la clase Console del paquete System en C#. WindowHeight se refiere a la altura de la ventana de la consola medida en filas.
Programa 1: Obtener el valor de 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); } } }
Producción:
Programa 2: Configuración del valor de 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); } } }
Producción:
Nota: Vea la altura de la Ventana en ambas imágenes.
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA