private static void Display(params Object[] things)
{
foreach (Object num in number)
Label5.Text = "{0} ", + num;
}
I'm not really sure what to really do. I want to display all the input numbers onto label5
, but I'm not really sure how to do it.
For example: I have a textBox
and the user enters in 23, 50, 89, 73, 40
, etc into the textBox
and I want to display the numbers the user entered into label5
. Thank you.