bidimensional array as property

What is the correct method to declare a bidimensional array as a property? I’ve tried myarray(,), myarray(-1,-1), myarray(0,0) but always I obtain the error message “This array has fewer dimensions than you have provided”

Thanks

Sergio

myArray(-1,-1) works for me. Where is this error being generated?

Hi Kem,

many thanks for your reply. I’ve solved with myArray(-1,-1). My problem was related to the incorrect setting of the scope of a method.

Bye

Sergio