Dada la consola normal en C#, la tarea es cambiar el ancho de la ventana de la consola.
Enfoque: esto se puede hacer usando la propiedad WindowWidth en la clase Console del paquete System en C#. WindowWidth se refiere al ancho de la ventana de la consola medido en columnas .
Programa 1: Obtener el valor de 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); } } }
Producción:
Programa 2: Establecer el valor de 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); } } }
Producción:
Nota: vea el ancho 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