Reset console color, window size, buffer height and width : Console window settings : Development C# Examples


C# Examples » Development » Console window settings »

 

Reset console color, window size, buffer height and width









    
using  System;

public  class  MainClass
{
        static  void  Main(string[]  args)
        {
                Console.ResetColor();
                Console.SetWindowSize(100,  50);
                Console.BufferHeight  =  500;
                Console.BufferWidth  =  100;
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Development
» Console window settings