15

Is there a way to color the font of certain lines in a console app in .net?

Thanks

2 Answers2

18
Console.BackgroundColor = ConsoleColor.Blue;
Console.ForegroundColor = ConsoleColor.Yellow;
Aliostad
  • 80,612
  • 21
  • 160
  • 208
8

http://msdn.microsoft.com/en-us/library/system.console.foregroundcolor.aspx

You can change the foreground and background colors of the console. The foreground color is of course the text.

KeithS
  • 70,210
  • 21
  • 112
  • 164