We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have code like:
public override object ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object existingValue, Newtonsoft.Json.JsonSerializer serializer) { var result = serializer.Deserialize<int?>(reader); return result.HasValue ? VOTYPE.From(result.Value) : null; }
in \src\Vogen\Templates\Double\Double_NewtonsoftJsonConverter.cs
\src\Vogen\Templates\Double\Double_NewtonsoftJsonConverter.cs
I would expect to see Deserialize<double?>(reader);
Deserialize<double?>(reader);
The text was updated successfully, but these errors were encountered:
e84a7cd
Merge pull request #123 from SteveDunn/fix-nsj-bugs
a1abcf3
Fixes #120 - JSON converters lose accuracy for float/decimal/double
No branches or pull requests
Describe the feature
We have code like:
in
\src\Vogen\Templates\Double\Double_NewtonsoftJsonConverter.cs
I would expect to see
Deserialize<double?>(reader);
The text was updated successfully, but these errors were encountered: