What is the
VB .NET replacement for the VB6 String() function?
(This function takes 2 arguments:
Code:
Function String(Number As Long, Character) As String
The return value is a string of characters specified by the Character argument, repeated Number times.
String(4, "O") returns "OOOO".
String(4, 65) returns "AAAA".
)