2
我有這行代碼:Vb.Net轉換StrDub到C#.NET
strKey &= Strings.StrDup(intKeySize - intLength, chrKeyFill)
這是什麼代碼在C#中的相同呢?我似乎無法找到它。
我有這行代碼:Vb.Net轉換StrDub到C#.NET
strKey &= Strings.StrDup(intKeySize - intLength, chrKeyFill)
這是什麼代碼在C#中的相同呢?我似乎無法找到它。
strKey += new String(chrKeyFill, intKeySize - intLength);
或
strKey = strKey.PadRight(intKeySize, chrKeyFill)
strKey += strKey.PadRight(strKey.Length + (intKeySize - intLength), chrKeyFill)
+1使用字符串的構造。 – vcsjones 2011-05-05 18:20:36