Possible Duplicate:
Explaining post-increment in C#
Consider the following C# code:-
int i = 2;
i = i++;
Console.WriteLine(i);
I am getting the output as 2. Why there is no effect of i = i++?
Consider the following C# code:-
I am getting the output as |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Depending on where you put the
This way
This way |
|||
|
|
|
Because the MSDN: Operator precedence and associativity. Try this one:
|
|||||
|
|