Change the Console Foreground and Background color and clear : Console window settings : Development C# Examples


C# Examples » Development » Console window settings »

 

Change the Console Foreground and Background color and clear









    
using  System;

public  class  MainClass
{
        static  void  Main(string[]  args)
        {
                Console.ForegroundColor  =  ConsoleColor.Red;
                Console.BackgroundColor  =  ConsoleColor.Green;
                //Console.Clear();
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Development
» Console window settings