How to change the Background Color of Text in C# Console


To change the background color of text in Console, use the Console.BackgroundColor Property in C#.

Example

Let us now see an example −

using System;
class Demo {
   public static void Main (string[] args) {
      Console.BackgroundColor = ConsoleColor.Blue;
      Console.WriteLine("Background color changed = "+Console.BackgroundColor);
   }
}

Output

This will produce the following output −

Updated on: 14-Nov-2019

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements