例如:
第一行 红色
第二行 绿色
第三行 蓝色
每一行一种颜色,不是整体都是一种颜色。使用color好像不能啊
C#代码:
static void Main(string[] args)
{
var sColor = "白底黑字";
Console.ForegroundColor = ConsoleColor.Black;//字体颜色
Console.BackgroundColor = ConsoleColor.White;//背景颜色
Console.Write(sColor.PadRight(Console.WindowWidth - sColor.Length)); //设置一整行的背景色
Console.ReadLine();
}