2011-05-05 112 views
2

我有這行代碼:Vb.Net轉換StrDub到C#.NET

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

這是什麼代碼在C#中的相同呢?我似乎無法找到它。

回答

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

strKey = strKey.PadRight(intKeySize, chrKeyFill) 
+0

+1使用字符串的構造。 – vcsjones 2011-05-05 18:20:36

0
strKey += strKey.PadRight(strKey.Length + (intKeySize - intLength), chrKeyFill)