将空格附加到字符串构建器?

发布于 2024-12-05 12:41:11 字数 239 浏览 0 评论 0原文

如何将空格附加到字符串生成器?我需要插入 90 个空格,在 VB 中我有这段代码,但我很困惑如何在 c# 中编写任何人都可以帮助我,

Dim S As New StringBuilder("HELLO")
S.Append(" "c, 90)
S.Append("WORLD")
MessageBox.Show(S.ToString) 

谢谢。

How do I append white space to a string builder? I need to insert 90 blank spaces, in VB i had this code but i was confused how to write in c# can any one help me

Dim S As New StringBuilder("HELLO")
S.Append(" "c, 90)
S.Append("WORLD")
MessageBox.Show(S.ToString) 

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

那些过往 2024-12-12 12:41:11
S.Append(' ', 90);

应该这样做。

S.Append(' ', 90);

that ought to do it.

执着的年纪 2024-12-12 12:41:11
StringBuilder s = new StringBuilder().Append("Hello").Append(' ', 90).Append("world");
StringBuilder s = new StringBuilder().Append("Hello").Append(' ', 90).Append("world");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文