不知道.NET有沒有下面這個功能的系統函數可用

Private Function REPLICATE(ByVal value As String, ByVal count As Integer) As String
Dim s As StringBuilder = New StringBuilder
For i As Integer = 1 To count
s.Append(value)
Next
REPLICATE = s.ToString
End Function

相关文章:

  • 2021-11-21
  • 2021-07-17
  • 2021-08-24
  • 2021-12-28
  • 2021-06-01
  • 2022-12-23
  • 2021-04-18
  • 2021-07-12
猜你喜欢
  • 2021-07-01
  • 2022-12-23
  • 2022-01-16
  • 2021-07-18
  • 2022-12-23
  • 2022-12-23
  • 2021-12-14
相关资源
相似解决方案