- Make them return void, so they can't be used as expressions like this: y = x++; foo(x--); You have to use them as: x++; y = x; x--; foo(x); (So ++ and -- become similar to the Inc() and Dec() functions of Pascal).
No way. I've written items[itemCount++] way too often to give that up. -- Best regards, Vladimir mailto:[email protected]
