How can I make JSON.NET return a decimal instead of a double when parsing floats from JSON? (it\'s an object with a Dictionary that is seri
Dictionary
In Json.NET 5.0, Newtonsoft.Json.JsonSerializerSettings class has the new property FloatParseHandling, you can set this property value Newtonsoft.Json.FloatParseHandling.Decimal
Newtonsoft.Json.JsonSerializerSettings
FloatParseHandling
Newtonsoft.Json.FloatParseHandling.Decimal