Console.WriteLine in color
-
Hi! We can write something on the console window using Console.WriteLine. I want to write something on console in some color like Red or blue. How can i do so ?
Imtiaz
-
Hi! We can write something on the console window using Console.WriteLine. I want to write something on console in some color like Red or blue. How can i do so ?
Imtiaz
A search on google came out these http://www.daniweb.com/code/snippet134.html[^] http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=86064&SiteID=1[^]
-
Hi! We can write something on the console window using Console.WriteLine. I want to write something on console in some color like Red or blue. How can i do so ?
Imtiaz
And since .Net 2 you can just use the handy properties in the Console class:
Console.BackgroundColor Console.ForegroundColor
Then just set them toColor.Red
for example, background will obviously change the background colour, and Foreground will change the text colour.My current favourite word is: Nipple!
-SK Genius