I ran into a problem with Xojo script:
Var a As Integer = 5
Var b As Double = 10.5
Print a.ToString
This works
Now if I ask to print b
Var a As Integer = 5
Var b As Double = 10.5
Print b.ToString
I get Error 184 ExtensionMethodRequiresConversions
Can someone help with that one?
Thank you
Jeremie_L
(Jeremie_L)
2
You should open an issue about that.
Workaround:
Print str(b)
Thanks Jeremie, I have now raised an issue. You methods works. homely they will fix it shortly.
AlbertoD
(AlbertoD)
4
Here is the issue (if someone wants to keep track of it):
#77169 - Xojoscript problem with Double.ToString