Computer >> Máy Tính >  >> Lập trình >> C#

Làm cách nào để thay đổi BufferWidth của Console trong C #?

Để thay đổi BufferWidth của Bảng điều khiển, hãy sử dụng thuộc tính Console.BufferWidth.

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ -

using System;
class Demo {
   public static void Main (string[] args){
      Console.BufferHeight = 200;
      Console.WriteLine("Buffer Height = "+Console.BufferHeight);
      Console.BufferHeight = 250;
      Console.WriteLine("Buffer Width = "+Console.BufferWidth);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Buffer Height = 200
Buffer Width = 200