如何在 C# 控制台中更改文本的背景颜色
要在控制台中更改文本的背景颜色,请在 C# 中使用 Console.BackgroundColor 属性。
示例
现在,让我们看一个示例 −
using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); } }
输出
将生成以下输出 −
广告