Some questions :
What variable type, from the perfomance point of view, should be used for:
1) For-Next loops ? For i=0 to 100
i as Number or undefined, Integer is not supported ?
2) array variable indexes Dim x(i,j) ?
i and j as Number, Integer or undefined ?
3) drawing, pixels Drawer.DrawRectangle2(pen.Value, x1, y1, w, h)
x1,y1, w, h Integer or Number ?
4) Why not having used the standard variable type names for the declarations ?
Double instead of Number ?
Int32 instead of Integer ?
Best regards.
What variable type, from the perfomance point of view, should be used for:
1) For-Next loops ? For i=0 to 100
i as Number or undefined, Integer is not supported ?
2) array variable indexes Dim x(i,j) ?
i and j as Number, Integer or undefined ?
3) drawing, pixels Drawer.DrawRectangle2(pen.Value, x1, y1, w, h)
x1,y1, w, h Integer or Number ?
4) Why not having used the standard variable type names for the declarations ?
Double instead of Number ?
Int32 instead of Integer ?
Best regards.