back

by yen223·13y ago·view on hn ↗
Unfortunately this is not correct.

If you run

  for (int x = 0; x < 10; x++)
  {
    i += i++;
    Console.WriteLine(i);
  }
i is always 0.