I want to output some characters in C# console application and then rewrite them, thus changing characters in position already occupied in command window. So for for example
If you print a '\r' character, the cursor will return back to the current line, e.g.
Console.Write("10%\r");
// then..
Console.Write("20%\r");
Have a look at Writing string at the same position using Console.Write in C# 2.0