I am using .NET Framework 4.5 and I\'m having this issue. The type or namespace \'Json\' does not exist in the namespace \'System\'
So, I tried to Inst
using Newtonsoft.Json; Should get the job done
now you can use :
JsonConvert.SerializeObject
JsonConvert.DeserializeObject
That package is discontinued and shouldn't be used any more.
If you have a console application, I could recommend two options:
Both are capable of reading and writing JSON. I find the JSON.NET library easier to use and more feature complete.