JSON decoding in C#

c#, json

Solution

Check out the DataContractJsonSerializer. You'll have to target .NET 3.5, which means Visual Studio 2008 is pretty much required. Here's a good blog post about using the JSON data contract serializer.

Problem

How can I decode a json response in C#?

Original source

Related problems