Hello Everyone, I have been trying to figure out how to return an array of strings like this:
public str[] exReturnArray()
{
str strArray[];
;
strArray[1] = "mon";
strArray[2] = "tues";
strArray[3] = "wed";
strArray[4] = "thur";
return strArray;
}
I get different errors depending on what I try.. can anyone set me straight?
Thanks,
Mike

