user623892
user623892

Reputation:

How to add font color to a .net console app?

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

Thanks

Upvotes: 15

Views: 9616

Answers (2)

Aliostad
Aliostad

Reputation: 81700

Console.BackgroundColor = ConsoleColor.Blue;
Console.ForegroundColor = ConsoleColor.Yellow;

Upvotes: 18

KeithS
KeithS

Reputation: 71591

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.

Upvotes: 8

Related Questions