I'm using some dynamic arrays in my code and was wondering how to tell what the final length of the array was, or whether it has a length at all.
I am looking to use it something like this:
if len(myArray()) > 0 then
..do something
else
..do something else
end if
Thanks
I am looking to use it something like this:
if len(myArray()) > 0 then
..do something
else
..do something else
end if
Thanks