Tagged Questions

31
votes
6answers
515 views

C# Pre- & Post Increment confusions

I am a little confused about how the C# compiler handles pre- and post increments and decrements... When i code the following: int x = 4; x = x++ + ++x; x will have the value 10 afterwards. I ...
17
votes
8answers
3k views

Why can't I do ++i++ in C-like languages?

Half jokingly half serious: why can't I do ++i++ in C-like languages, specifically in C#? I'd expect it to increment the value, use that in my expression, then increment again.
4
votes
4answers
215 views

C# difference between arr[0]++ and ++arr[0]

In C#, is there a difference between the code (all in one statement, not part of a larger one) arr[0]++; and ++arr[0]; I fully understand, that in C / C++ / Objective-C, that this would not do the ...