MTSkull
Well-known member
This is how I currently process dynamic arrays.
Is there a .net way, alternate to UBound, that is more appropriate?
Thanks
MTS
Code:
for x = 0 to ubound(MyArray) - 1
some stuff here
next x
Is there a .net way, alternate to UBound, that is more appropriate?
Thanks
MTS