-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.BackgroundColorプロパティConsole.ForegroundColorです。

例えば;

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

ここに画像の説明を入力

于 2013-10-03T10:42:08.933 に答える