Convert Library

Hello guys!

I have a little question about converting variables in the arduino environment.
Is there a Standard library to convert variables, like in C#?

Especially for converting a string variable into an unsigned long integer.
I know, that you can easily convert a string into an "normal" integer by adding .toInt()

It would be nice to use such a simple argument like .toInt64() or toUnsigned() to solve this problem.

Regards, deloarts!

There is no library, but all the things the C# interface uses are available.

There are strtol, strtoul

A lot of the conversion functions are listed here: avr-libc: <stdlib.h>: General utilities