Support Console output e.g. Backspace /b etc
int updateCount = 343;
for( int i = 0 ; i < updateCount ; i++ ){
string msg = string.Format( "Update Progess:{0:p}" , (double)i/(updateCount-1) );
Console.Write( msg );
Console.Write( new string( '\b' , msg.Length ));
}
Console.WriteLine();
4
votes
Adrian
shared this idea
-
Check out the new DumpContainer class, also the Util.Progress method and the Util.ProgressBar class. (Search Help | What's New for examples on how to use these)
-
Adrian commented
oops meant \b