2011/9/10 Jussi Lahtinen <jussi.lahti...@gmail.com>

>
> What is the alternative then? Pass variables as pointers?
> Making almost needless class for couple variables doesn't seem good
> option...
>
> Jussi
>

Pass variables as pointer, will work (I think). But, ¿is necessary?

Could you just use functions to return values?


Private Sub Test(x As Integer) As Integer

    . . .

    Return x

End


iMyVal = Test(iMyVal)
------------------------------------------------------------------------------
Using storage to extend the benefits of virtualization and iSCSI
Virtualization increases hardware utilization and delivers a new level of
agility. Learn what those decisions are and how to modernize your storage 
and backup environments for virtualization.
http://www.accelacomm.com/jaw/sfnl/114/51434361/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to