Answers for "how to change console app text color in c#"

C#
2

add color to console

console.log('%cTest message', 'color: #008000; font-weight:bold;');
Posted by: Guest on November-05-2021
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 console app text color in c#"

C# Answers by Framework

Browse Popular Code Answers by Language