views:

87

answers:

2

Can a function return an array?

A: 

Yes. [Too short, but really... what more can be said?]

Serapth
you can write a example method for returning an array...
Cesar
Would you? Such questions shouldn't be rewarded but locked.
Serapth
+2  A: 

Sure.

Public Function Foo(ByVal bar as string) as String()
    ` return an array
End Function
Adam Robinson