SyntaxFix
Write A Post
Hire A Developer
Questions
You can reset all controls of a certain type. Something like
foreach(TextBox tb in this.Controls.OfType<TextBox>().ToArray()) { tb.Clear(); }
But you can't reset all controls at once