20
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
Console.WriteLine("Background Color: {0}", Console.BackgroundColor);
8
9
Console.BackgroundColor = ConsoleColor.Red;
10
Console.WriteLine("Background Color: {0}", Console.BackgroundColor);
11
12
Console.BackgroundColor = ConsoleColor.Green;
13
Console.WriteLine("Background Color: {0}", Console.BackgroundColor);
14
15
Console.BackgroundColor = ConsoleColor.Yellow;
16
Console.WriteLine("Background Color: {0}", Console.BackgroundColor);
17
18
Console.ReadKey();
19
}
20
}
Cached Result
Hello World