Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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++?

share|improve this question
This is the correct dup: stackoverflow.com/questions/4287839/… – Tim Schmelter Jun 4 '12 at 8:05
See its a confusing ques (Read Interview type). If = takes precedence first, then increment happens afterwards means i should be 3. If ++ takes precedence first then after incrementing it should assign 3 in i. – Nikhil Agrawal Jun 4 '12 at 8:08
It will compiled into int i = 2; int topOfStack = i; i++; i = topOfStack; – Viacheslav Smityukh Jun 4 '12 at 8:12

marked as duplicate by Lasse V. Karlsen Jun 4 '12 at 8:04

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.

2 Answers

up vote 0 down vote accepted

Depending on where you put the +-operators, the value assigned is incremented before or after:

i = ++i;

This way i is counted up before assigned.

i = i++;

This way i is counted up after assigned.

share|improve this answer

Because the = operator takes precedence first.

MSDN: Operator precedence and associativity.

Try this one:

int i = 2;
i = ++i; // or write just ++i;
Console.WriteLine(i);
share|improve this answer
Yes it does. But it should increment i after, isn't it? – Viacheslav Smityukh Jun 4 '12 at 8:04
Read this: stackoverflow.com/a/6716217/675462 – papaiatis Jun 4 '12 at 8:10

Not the answer you're looking for? Browse other questions tagged or ask your own question.