更新 VB 控制台中的当前行

发布于 2024-12-09 20:21:24 字数 180 浏览 0 评论 0原文

我正在尝试写出控制台数据加载的百分比。我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天赋异禀 2024-12-16 20:21:24

使用 vbCr 生成回车符:

        Console.Write("{0}Percentage: {1}/{2}", vbCr, nCurrent, nTotal)

Use vbCr to generate a carriage return character:

        Console.Write("{0}Percentage: {1}/{2}", vbCr, nCurrent, nTotal)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文