How do i blink the text in console using C#?
Why not use backspace and rewrite the text on the same screen line?
string blink = "Password Please!"
while (!System.Console.KeyAvailable)
{
Console.Write(blink);
Thread.Sleep(650);
for (int j = 1; j <= blink.Length + 2; j++)
{
Console.Write("\b"+(char)32+"\b");
if (j == blink.Length + 2) Thread.Sleep(650);
}
}