Hey everyone,
Just a neat little trick I came across on Stackoverflow, repeating a character x times without using a loop:
string result = new String(‘x’, 5); //xxxxx
string result = new String(‘a’, 3); //aaa
Check out the original post for more info: http://stackoverflow.com/a/3754700/522859
Leave a Reply