In iOS
the following code returns a string containing "1000", in Android the code returns a string, containing "1000.0"
I think that this is a bug.
the following code returns a string containing "1000", in Android the code returns a string, containing "1000.0"
I think that this is a bug.
B4X:
Private n As Double = 1000
private s as string = NumberFormat2(n,0,2,0,False)
log(s)