我正在以不同的颜色打印到Windows控制台进行测试,并随机设置文本和背景颜色。当行超出控制台缓冲区时,背景颜色将设置为整行。这是C#中的一个例子:
static void Main( String[] args )
{
Console.BufferHeight = 16;
foreach( var i in Enumerable.Range( 0 , Console.BufferHeight + 3 ) )
{
var fgColor = Console.ForegroundColor;
var bgColor = Console.BackgroundColor;
var tst = i % 2 == 0;
Console.ForegroundColor = tst ? ConsoleColor.White : ConsoleColor.Black;
Console.BackgroundColor = tst ? ConsoleColor.Black : ConsoleColor.Yellow;
Console.WriteLine( $"{i} HELLO WORLD" );
Console.ForegroundColor = fgColor;
Console.BackgroundColor = bgColor;
}
Console.ReadLine();
}
我已经将缓冲区设置为其最大缓冲区大小(16位),但此应用程序将来会打印数百万行。
有没有解决方法?
答案 0 :(得分:4)
我已经将缓冲区设置为其最大缓冲区大小(16位),但此应用程序将来会打印数百万行。
然后我认为你的意思是Int16.MaxValue
而不是16。
无论如何,为了解决您的问题,只需恢复之前的颜色写下行尾字符:
foreach (var i in Enumerable.Range(0, Console.BufferHeight + 3))
{
var fgColor = Console.ForegroundColor;
var bgColor = Console.BackgroundColor;
var tst = i % 2 == 0;
Console.ForegroundColor = tst ? ConsoleColor.White : ConsoleColor.Black;
Console.BackgroundColor = tst ? ConsoleColor.Black : ConsoleColor.Yellow;
Console.Write($"{i} HELLO WORLD");
Console.ForegroundColor = fgColor;
Console.BackgroundColor = bgColor;
Console.WriteLine();
}