I have a label, lblmessage, which I want to assign 4 different values.
It should show up like this:
5
4
3
2
I know this: lblmessage.text = "5" and to assign it another value lblmessage.text = lblmessage.text + "4".
This just puts them next to each other, but how can I get them to show up underneath each other?
Thanks!
Use:
Although I suggest that you use a StringBuilder.