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.");
2.1m questions
2.1m answers
60 comments
57.0k users