0
In java there was a difference between ++x and x++ ? Is it also applicable in C#?
3 ответов
+ 1
@Al Connar x= 2; y = x++; y is now 2 and x 3.
0
Yup... Pre and post increment operation
0
@sandeep pant how does this effect the above? or does it only effect it in some much larger code?