In addition to
Afzaal Ahmad Zeeshan good points, you should note that a
TextBox
doesn't behave like the
Console
: in order to
append text to a
TextBox
control you have explicitely do it, e.g.
myTextBox.Text = myTextBox.Text + "*";
Or, better, use a
StringBuilder
object to prepare your text and then assign the resulting string to the
TextBox
control.