Is there a single command that replicates a string into multiples of that string or character. Sql has replicate which can replicate a space for instance into many:
replicate(' ', 10000) -- will make 10k spaces.
Is there a similiar command in vb6 and c#?
To repeat an actual string, not just one character (code is the same for C# and VB.Net):