I am trying to write out to console a percentage of data loading. I tried to use C# syntax which would be Console.Write("\rPercentage: " + nCurrent + "/" + nTotal; however in VB I get the actual character 'r' being displayed in my string. Is there a special code I need to insert in order to update my cursor to the beginning of the line so that I may reuse that line?

Thanks

有帮助吗?

解决方案

Use vbCr to generate a carriage return character:

        Console.Write("{0}Percentage: {1}/{2}", vbCr, nCurrent, nTotal)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top