我正在用 C# 编写一个基于文本的小型冒险,它对所有内容都使用命令提示符,并且我正在寻找一种方法来更改输出文本的颜色。我看过的方法都没有正常工作。
问问题
103 次
3 回答
1
尝试这个:
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("blue.");
阅读更多关于Console.ForegroundColor
您还可以更改文本背景的信息:Console.BackgroundColor
于 2013-10-03T10:40:25.337 回答
1
Console.ForegroundColor = ConsoleColor.DarkRed;
应该可以正常工作。
于 2013-10-03T10:41:58.967 回答
1
你要找的是Console.BackgroundColor
和Console.ForegroundColor
属性。
例如;
Console.BackgroundColor = ConsoleColor.Black;
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("This is blue!!");
于 2013-10-03T10:42:08.933 回答