【C#】コンソール出力の文字色を変更する

C#のコンソールアプリにて、表示する文字色を変更するにはForegroundColorを変更する。

Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("*****黄*****");

Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("*****緑*****");

Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("*****赤*****");

Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine("****元の色****");

元の色はGray。 多用すると逆に見にくいので、エラー発生時などの出力の際には黄色を使うとよいかも。