C#控制台为输出内容设置背景色和字体颜色

C#控制台为输出内容设置背景色和字体颜色

static void Main(string[] args)
{
  Console.BackgroundColor = ConsoleColor.White;//设置背景色
  Console.ForegroundColor = ConsoleColor.Black;//设置字体颜色
  Console.WriteLine("  123");

  Console.BackgroundColor = ConsoleColor.Blue;
  Console.ForegroundColor = ConsoleColor.White;
  Console.WriteLine("  2222");

  Console.BackgroundColor = ConsoleColor.Gray;
  Console.ForegroundColor = ConsoleColor.Red;
  Console.WriteLine("  3333");
   

  Console.Read();
}

C#控制台为输出内容设置背景色和字体颜色

上一篇:C#中 DateTime 转 DateTimeOffset


下一篇:C# 获取时间戳(支持毫秒)