更新 VB 控制台中的当前行
我正在尝试写出控制台数据加载的百分比。我尝试使用 C# 语法,即 Console.Write("\rPercentage: " + nCurrent + "/" + nTotal;
但是在 VB 中,我在字符串中显示了实际的字符“r” 需要插入特殊代码才能将光标更新到行的开头,以便我可以重用该行?
是否
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 vbCr 生成回车符:
Use vbCr to generate a carriage return character: