Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to change BufferWidth of the Console in C#?
To change the BufferWidth of the Console, use the Console.BufferWidth property.
Example
Let us now see an example −
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);
}
}
Output
This will produce the following output −
Buffer Height = 200 Buffer Width = 200
Advertisements