C# 中的 Console.SetBufferSize() 方法
C# 中的 Console.SetBufferSize() 方法用于将屏幕缓冲区区域的高和宽设置为指定值。
语法
语法如下所示−
public static void SetBufferSize (int width, int height);
上述代码中,参数 width 是缓冲区区域的宽度,height 是缓冲区区域的高度。
示例
现在我们看一个示例来实现 C# 中的 Console.SetBufferSize() 方法−
using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.White; Console.ForegroundColor = ConsoleColor.Red; Console.SetBufferSize(400, 400); while (true) { Console.WriteLine("Our demo text!"); } } }
输出
将生成以下输出 −
广告