Apr 16, 2001 #1 Aleena Programmer Joined Oct 3, 1999 Messages 27 Location US Does anyone know of a way to return an array of objects from a sub routine? Or is this just not possible... Thanks for any help you can offer Anna
Does anyone know of a way to return an array of objects from a sub routine? Or is this just not possible... Thanks for any help you can offer Anna
Apr 16, 2001 1 #2 cwinans Programmer Joined Mar 26, 2001 Messages 102 Location US [tt] Object [] some_method( args ) { Object [] some_object = new Object[3]; return some_object; } [/tt] I hope this helped! ;-) - Casey Winans Upvote 0 Downvote
[tt] Object [] some_method( args ) { Object [] some_object = new Object[3]; return some_object; } [/tt] I hope this helped! ;-) - Casey Winans