G
Guest
Hey
I have very simple problem... I have label let's say it's lbl. So I need it
to display a counter:
int counter = Convert.ToInt32(lbl.Text) +1
bl.Text = counter;
In VB.Net I made it like this :
lbl.Text +=1
is there any way, to make it one line in C# ?
Jarod
I have very simple problem... I have label let's say it's lbl. So I need it
to display a counter:
int counter = Convert.ToInt32(lbl.Text) +1
bl.Text = counter;
In VB.Net I made it like this :
lbl.Text +=1
is there any way, to make it one line in C# ?
Jarod