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

📅  最后修改于: 2021-05-29 15:10:28             🧑  作者: Mango

给定普通的C#控制台,任务是找到“缓冲区宽度”的默认值并将其更改为其他值。

缓冲区宽度是指控制台中缓冲区区域的当前宽度(以列为单位)。

方法:可以使用C#中System包的Console类中的Buffer Width属性来完成此操作。

程序1:查找默认的缓冲区宽度

// 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);
    }
}
}

输出:

程序2:将缓冲区宽度更改为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);
    }
}
}

输出:

注意:查看两个图像底部的水平滚动条如何变化。