Is there a replacement for var & out parameters in Oxygene for Java (trial version: 5.0.31.991)?

Hey all,
I was wondering if there is a replacement for var & out method parameters in Oxygene for Java (trial version: 5.0.31.991)?

I have to say coming from Delphi/Freepascal I really miss them, it sometimes makes programming things more ‘interesting’ in Oxygene without them! LOL

afaik they are just completely “unpossible” on the JVM. the closes work around would be either to return a Tuple (we’ll be providing language-native tuple support in an upcoming release, soon), or to pass an object with writable properties that the callee fills.

Ok, thanks Marc…I thought that might be the case :slight_smile: