Is it possible to create a class property that is of type array? Or is the only solution to create a public array variable in the class? This is what I would like to do:
Code:
class clsTest
public property get arr
arr = array(0,1,2,3,4)
end property
end class
dim test
set test = new clsTest
MsgBox(test.arr(0)) ' error...