Is there a simple way to copy the content of a List into a Array?
For now i do it like that. but because this happens every 80ms, i thought there might be a faster/simpler way.
For now i do it like that. but because this happens every 80ms, i thought there might be a faster/simpler way.
B4X:
Dim bmproot As List
Dim bmp(bmproot.Size) As Int
For index=0 To bmproot.Size-1
bmp(index)=bmproot.Get(index)
Next
Last edited: