I have problem with Newtonsoft.JsonConverter in my C# app. I have decimal with trailing zeros. After convert to json - there zeros are missing.
Example:
input (decimal): 1.99000
output (json): 1.99
I have my own converter, that handles decimal value. Also, I configured FloatParseHandling as decimal.
What can I do to preserve this process?