Вы можете попробовать:
foreach ( Control ctl in Parent.Controls) {
if (ctl.GetTyep()== TextBox)
ctl.text = "";
}
Также, почему вы делаете
textbox.Text = (""); //You don't need the parenthesis here
textbox.Text = "".toString(); //the .toString() is definitly not needed.
Если вы хотите это только для одного текстового поля, то:
myTextBox.Text = String.Empty;
или
myTextBox.Text = "";