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 I could show progress in percentages 10%, 20%, 30% (but in the same place). How can I do that?
+4
A:
astander
2010-03-03 11:24:31
+1
A:
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");
izb
2010-03-03 11:24:46
The question states **C#**
astander
2010-03-03 11:26:50
Oh ok, maybe pseudocode was being lazy.
izb
2010-03-03 15:31:25