Dada la consola normal en C#, la tarea es encontrar el valor predeterminado de Buffer Width y cambiarlo por otro.
El ancho del búfer se refiere al ancho actual del área del búfer de la consola en columnas.
Enfoque: esto se puede hacer usando la propiedad Buffer Width en la clase Console del paquete System en C#.
Programa 1: encontrar el ancho de búfer predeterminado
// C# program to demonstrate the // Console.BufferWidth Property using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GFG { class Program { // Main Method static void Main(string[] args) { // Display current Buffer Width Console.WriteLine("Default Buffer Width: {0}", Console.BufferWidth); } } }
Producción:
Programa 2: cambiar el ancho del búfer a 100
// C# program to demonstrate the // Console.BufferWidth 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) { // Display current Buffer Width Console.WriteLine("Default Buffer Width: {0}", Console.BufferWidth); // Set the Buffer Width to 100 Console.BufferWidth = 100; // Display current Buffer Width Console.WriteLine("Changed Buffer Width: {0}", Console.BufferWidth); } } }
Producción:
Nota: Vea cómo la barra de desplazamiento horizontal en la parte inferior ha cambiado 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