I have a type structure similar to this:
I would like to be able to dimension the "thisarray" dynamically within code similar to this:
but when I try the above, it says
Is it possible to dynamically change dimensions on an array within a Type structure? If so, how?
Thanks,
Rusty
B4X:
Type Demo(thisarray(10) as int, thisstring as string)
Dim d as Demo
B4X:
dim d.thisarray(20) as int
"Unknown type thisarray are you missing a library reference"
Is it possible to dynamically change dimensions on an array within a Type structure? If so, how?
Thanks,
Rusty