Vb.Net 将 StrDup 转换为 C#.net

发布于 2024-11-05 18:57:31 字数 137 浏览 0 评论 0原文

我有这行代码:

strKey &= Strings.StrDup(intKeySize - intLength, chrKeyFill)

这行代码在 C# 中相当于什么?我好像找不到啊

I have this line of code:

strKey &= Strings.StrDup(intKeySize - intLength, chrKeyFill)

What is the equivalent of this code in C#? I can't seem to find it.

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

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

发布评论

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

评论(3

偏闹i 2024-11-12 18:57:31
strKey += new String(chrKeyFill, intKeySize - intLength);

或者

strKey = strKey.PadRight(intKeySize, chrKeyFill)
strKey += new String(chrKeyFill, intKeySize - intLength);

or

strKey = strKey.PadRight(intKeySize, chrKeyFill)
淡笑忘祈一世凡恋 2024-11-12 18:57:31
strKey += strKey.PadRight(strKey.Length + (intKeySize - intLength), chrKeyFill)
strKey += strKey.PadRight(strKey.Length + (intKeySize - intLength), chrKeyFill)
伏妖词 2024-11-12 18:57:31

我个人认为 String 构造函数方法比 VB.Net Strings 库笨拙且可读性较差。

 using Microsoft.VisualBasic;
 ...
 Strings.StrDup(2, '\t');

Personally I think the String constructor approach is clumsy and less readable than the VB.Net Strings library.

 using Microsoft.VisualBasic;
 ...
 Strings.StrDup(2, '\t');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文