Tagged Questions

0
votes
1answer
141 views

C#/QML types convertion (double/real/float)

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 <-> ...
0
votes
1answer
318 views

C# double to real

i am trying to convert double to pascal real but when i convert 0.23 to real i got 0.23999999 real how can i truncate all 9999 to 0000. public static byte[] Double2Real48(double d) { byte[] r48 = ...
0
votes
2answers
1k views

DateTime to Single with C#

I'm trying to build an interface between iTunes e MediaMonkeys. When I imported my tracks from iTunes to MM, the field LastPlayed wasn't considered. So I decided to build an interface that reads the ...