I have an app running that needs to use ulong data type. I was surprised there wasn't a ParseLong function. I resorted to keeping the ParseInt and wrote a piece of test code.
Dim UL as ULong = 0
UL = Bit.ParseInt("12345678",10)
Log(UL)
To my surprise, it outputted 12345678.
Is ParseInt actually a ULong or does data typing differ with the Ardunio cross compiling?
Dim UL as ULong = 0
UL = Bit.ParseInt("12345678",10)
Log(UL)
To my surprise, it outputted 12345678.
Is ParseInt actually a ULong or does data typing differ with the Ardunio cross compiling?