Any idea on how to do it? If not possible, what's a good JSON library for C#?
|
Json.NET is a great .NET json library. Suports LINQ, reading/writing and converting objects to and from json. |
|||||||||||
|
|
Imagine that we have the following JSON in the string variable
We can get write the value "another bar" to the console using the following code:
|
|||
|
|
|
If you're just looking for JSON encoding/decoding, there is an official System.Web extension library from Microsoft that does it, odds are you probably already have this assembly (System.Web.Extensions): http://msdn.microsoft.com/en-us/library/system.web.script.serialization.javascriptserializer.aspx |
|||
|
|
|
Here's an extenstion method to serialize any object instance to JSON:
You'll need to add a reference to System.ServiceModel.Web to use the DataContractSerializer. |
|||
|
|
|
Scott Guthrie blogged about this |
|||
|
|