Overwriting the same line on a C# Console
This is a good one which is very useful:
for(int i = 0; i < 100; ++i)
{
Console.Write("\r{0}", i);
}
http://stackoverflow.com/questions/888533/how-can-i-update-the-current-line-in-a-c-sharp-windows-console-app
Comments
Post a Comment