how to change the background colour of the whole cmd c# code example
Example 1: c# console background color
Console.BackgroundColor = ConsoleColor.Green;
Example 2: c# change colour of console
Console.BackgroundColor = ConsoleColor.Green;
Console.ForegroundColor = ConsoleColor.DarkGreen;
Console.Clear();
//green on green
Console.WriteLine("yo");
Console.ReadLine();