how to make a reading operation with this writing textfile solution, please?
Textbox[]tbs = { textBox1, textBox2, textBox3, textBox4, textBox5 }; // add all of them in here
StringBuilder sb = new StringBuilder();
foreach(TextBox tb in tbs)
sb.AppendLine(tb.Text);
System.IO.File.WriteAllText(@"C:\myFile.txt", sb.ToString());