2011年06月16日

C#で文字列をn回繰り返す

String Result = new StringBuilder().Insert(0, "ABC", 3).ToString();

Resultの中身:"ABCABCABC"
posted by rocknfields at 00:27| .Netコーディング (C#, VB etc)