How to change the Foreground Color of Text in C# Console?


To change the Foreground Color of text, use the Console.ForegroundColor property in C#.

Example

Let us see an example −

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

Output

This will produce the following output −

Updated on: 13-Nov-2019

8K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements