Quote Originally Posted by Westerberg
Is it possible to pass an array from a method?
Code:
yourType[] function()
{
    // create array
    yourType[] arr = ...;

    // return array
    return arr;
}
- petter