The simplest way to replicate (repeat) a string in C# is using string class constructor:
string s = new string(‘#’, 4); //result: ####
If you want to replicate a sub-string (not only a char), use this:
string.Concat(System.Collections.ArrayList.Repeat(“##”,4).ToArray());
Posted by SkilledDeveloper