Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Any idea on how to do it? If not possible, what's a good JSON library for C#?

share|improve this question

5 Answers

up vote 6 down vote accepted

Json.NET is a great .NET json library. Suports LINQ, reading/writing and converting objects to and from json.

share|improve this answer
1  
I looked at it. Seems way too enterprisey for compared to System.Json. I'm mainly looking to use Json to serialize and deserialize lists of implicit datastructures (tuples, etc.). I'm working mostly dynamic data already, so its ability to serialize strongly typed objects isn't exactly something I'm thrilled about, and its other method is overly verbose. – Patrick Apr 22 '09 at 5:56
2  
It does dynamic data just like System.Json in as well as serializing/deserializing: JObject o = JObject.Parse("{'first_name':'Jeff', 'age':30}"); Console.WriteLine(o["first_name"]); – James Newton-King Apr 26 '09 at 2:19
That is better. I really liked the implicit operators on the JsonValue class. I may just give it a shot. – Patrick Apr 26 '09 at 5:40

System.Json is now available in non-Silverlight projects via NuGet (.Net's package management system) and is hopefully going to be released as part of the core framework in vnext. The NuGet package is named JsonValue.

Imagine that we have the following JSON in the string variable json:

[{"a":"foo","b":"bar"},{"a":"another foo","b":"another bar"}]

We can get write the value "another bar" to the console using the following code:

using System.Json;
dynamic jsonObj = JsonValue.Parse(json);
var node = jsonObj[1].b;
System.Console.WriteLine(node.Value);
share|improve this answer

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

share|improve this answer

Here's an extenstion method to serialize any object instance to JSON:

public static class GenericExtensions
{
    public static string ToJsonString<T>(this T input)
    {
        string json;
        DataContractJsonSerializer ser = new DataContractJsonSerializer(input.GetType());
        using (MemoryStream ms = new MemoryStream())
        {
            ser.WriteObject(ms, input);
            json = Encoding.Default.GetString(ms.ToArray());
        }
        return json;
    }
}

You'll need to add a reference to System.ServiceModel.Web to use the DataContractSerializer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.