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