本文介绍了是否可以在 .NET 中以彩色写入控制台?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
写一个小的命令行工具,输出不同颜色就好了.这可能吗?
解决方案
是的.请参阅此
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.");
这篇关于是否可以在 .NET 中以彩色写入控制台?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!