我有这行代码:

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


C#中的这段代码等效于什么?我似乎找不到。

最佳答案

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


要么

strKey = strKey.PadRight(intKeySize, chrKeyFill)

10-02 01:26