hydrobyte / McJSON

A Delphi / Lazarus / C++Builder simple and small class for fast JSON parsing.
MIT License
58 stars 20 forks source link

how to get int64 value ? #3

Closed leeonsoft closed 2 years ago

leeonsoft commented 2 years ago

how to get int64 value ?

hydrobyte commented 2 years ago

Considering the compatibility with old versions of Delphi and C++Builder, I believe that the most balanced way would be to store it as a string and then convert to Int64 when necessary.

leeonsoft commented 2 years ago

Ok,Thank you .