The issue is that Newtonsoft doesn't return the json value of a string, if you pass a string it will simply return that string, without additional quotes and escapes.
The fix is not to use ToString () (without arguments) as soon as you pass a formatting argument (either one) it does the right thing.
The issue is that Newtonsoft doesn't return the json value of a string, if you pass a string it will simply return that string, without additional quotes and escapes.
The fix is not to use
ToString ()
(without arguments) as soon as you pass a formatting argument (either one) it does the right thing.