-4

我正在用 C# 编写一个基于文本的小型冒险,它对所有内容都使用命令提示符,并且我正在寻找一种方法来更改输出文本的颜色。我看过的方法都没有正常工作。

4

3 回答 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.BackgroundColorConsole.ForegroundColor属性。

例如;

Console.BackgroundColor = ConsoleColor.Black;
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("This is blue!!");

在此处输入图像描述

于 2013-10-03T10:42:08.933 回答