Vb.Net 将 StrDup 转换为 C#.net
我有这行代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者
or
我个人认为 String 构造函数方法比 VB.Net Strings 库笨拙且可读性较差。
Personally I think the String constructor approach is clumsy and less readable than the VB.Net Strings library.