Difference between ++a and a++ in c#
Hi all,Today I met a interview question
what is the result for the following code in c# ?
int a = 29;
a--;
a -= ++a;
actually I checked this code in a c# function it return -1.
So please tell me what is the logic in this code....
Thanks in advance