是否有可能写入到颜色.NET控制台?有可能、控制台、颜色、NET

2023-09-03 10:39:13 作者:29.昔友

写一个小的命令行工具,这将是很好用不同的颜色输出。这可能吗?

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.");