C# 中的 Console.ResetColor() 方法
C# 中的 Console.ResetColor() 方法可用于将前景色和背景色控制台颜色设置为其默认值。
语法
语法如下 -
public static void ResetColor ();
范例
现在让我们看一个示例,以便在 C# 中实现 Console.ResetColor() 方法:
using System; class Demo { public static void Main (string[] args) { Console.WriteLine ("At first, we have set colors here...
After that, we will reset the colors to default."); Console.BackgroundColor = ConsoleColor.White; Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine ("
Colors are set for this text"); Console.ResetColor(); Console.WriteLine ("
Now we reset the color to default!"); } }
输出
这将产生以下输出 -
广告