> After our discussion about not being able to use Include() with a > class property, I thought I would then use the C Style += operator. > After all that boils down to: i += 2; >>>>> i := i + 2; Suspect that it gets translated to inc(i,2); not i:=i+2; and then it makes sense again, for the same reasons as before.