Console.ResetColor()方法用于将前景和背景控制台的颜色设置为其默认值,即背景为黑色,前景为白色。
句法:
public static void ResetColor ();
例外情况:
- SecurityException :如果用户没有执行该操作的权限。
- IOException :如果发生I / O错误。
下面的程序说明了上述方法的用法:
示例1:将控制台颜色设置为红色和黄色
// C# program to set the colors to red and yellow
// to demonstrate ResetColor() in next example
using System;
namespace GFG {
class Program {
// Main Method
static void Main(string[] args)
{
// using BackgroundColor property
Console.BackgroundColor = ConsoleColor.Yellow;
// using ForegroundColor property
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Welcome to GeeksForGeeks");
}
}
}
输出:
示例2:将颜色重置为默认值
// C# program to illustrate the
// Console.ResetColor Property
using System;
namespace GFG {
class Program {
// Main Method
static void Main(string[] args)
{
// using ResetColor() Method
Console.ResetColor();
Console.WriteLine("Welcome to GeeksForGeeks");
}
}
}
输出:
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.console.resetcolor?view=netframework-4.7.2