Answers for "how to change the colour of the text in the console c#"

C#
6

c# change colour of console

Console.BackgroundColor = ConsoleColor.Green;
            Console.ForegroundColor = ConsoleColor.DarkGreen;
            Console.Clear();
            //green on green
            Console.WriteLine("yo");
            Console.ReadLine();
Posted by: Guest on March-06-2020

Code answers related to "how to change the colour of the text in the console c#"

C# Answers by Framework

Browse Popular Code Answers by Language