如何更改 C# 控制台中的文本前景色?


要在 C# 中更改文本的前景色,请使用 Console.ForegroundColor 属性。

示例

我们来看一个示例 −

using System;
class Demo {
   public static void Main (string[] args) {
      Console.BackgroundColor = ConsoleColor.Blue;
      Console.WriteLine("Background color changed = "+Console.BackgroundColor);
      Console.ForegroundColor = ConsoleColor.Yellow;
      Console.WriteLine("
Foreground color changed = "+Console.ForegroundColor);    } }

输出

这将产生以下输出 −

更新于: 2019 年 11 月 13 日

9K+ 浏览

开启您的职业生涯之路生涯

完成本课程获得认证

开始
广告