Just ran into a bit of code that wasn't doing what I thought it should. Do other people think this should return 1? Is there a good explanation as to why it doesn't??
int count = 0;
count++.ToString(); // Returns 1 no?
I always thought count++ was the same as count = count + 1...