In Perl
print "a" x 3; # aaa
In C#
Console.WriteLine( ??? )
|
|
In Perl
In C#
|
||
|
|
|
|
It depends what you need... there is For working with strings; you could just loop... not very interesting, but it'll work. With 3.5, you could use If you are going to use this a lot, you could use a bespoke C# 3.0 extension method:
|
||||
|
|
|
If you only need to repeat a single character (as in your example) then this will work:
|
||||||||
|
|
|
Well in all version of .NET to repeat a string you could always do this
|
||
|
|
|
|
If you need to do this with strings like Tom pointed out, then an extension method will do the job nicely.
|
||||
|