Writing a small command line tool, it would be nice to output in different colours. Is this possible?
Yes. See this article. Here's an example from there:
Console.BackgroundColor = ConsoleColor.Blue; Console.ForegroundColor = ConsoleColor.White; Console.WriteLine("White on blue.");
1.4m articles
1.4m replys
5 comments
57.0k users