Here’s a small tip on using the string class better in C# to fill a string with specified repeated characters.
You can use the string class constructor to fill a string that has all the repeated characters .
How to Fill String with Repeated Characters in C#?
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); }