Here’s a small tip on using the string class better .
You can use the string class constructor to fill a string that has all the repeated characters .
For example , assume you want a string with 10 # or * symbols .
One of doing this declaring a string like this
string str = “##########”;
The other easy and best way is to use the string class constructor like below
private void Form1_Load(object sender, EventArgs e)
{
string stringSymbols = new string('#', 10);
MessageBox.Show(stringSymbols);
}
Reference

1 comment
How to fill a string with repeated characters in C# | ProgramInDotnet
[...] How to fill a string with repeated characters in C. [...]
Aug 8, 2011