Is there a JSON de/serializer in .NET client profile? or is including System.Web.Extensions.dll or json.net (3rd party, its pretty solid) my only option?
I would hope there is something built into the client profile by now (2012 with .NET 4.5)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no longer a client profile in .NET 4.5. So feel free to use JSON.NET. Or
JavaScriptSerializer. Or whatever.By the way the new WebApi HttpClient uses JSON.NET so apparently Microsoft are leaning towards it.