I've some .NET type with property of type Decimal
The value of this property before serializing is 4.99
(I use Newtonsoft.Json library for serialization purposes)
But when it is serialized it is represented as 4.9900
Is there any way to avoid such behavior? Thanks