my C# project is reading some configurations from a QML file.
The thing is that i'm not sure about some convertions...
QML C#
int <-> int
string <-> string
bool <-> bool
are OK
I'm not sure about real/double in QML (to float/double in C#) I looked for some info about precisions but didn't find anything very clear.
Does double in QML is equivalent to double in C# ? Does real in QML is equivalent to float in C# ?