Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to serialize an array of objects as JSON dictionary.

Array item like this:

class Entry {
    public string Id{get;set;}
    public string Value{get;set;}
}

So array like

var arr = new[]
    {
        new Entry{Id = "one", Value = "First"},
        new Entry{Id = "two", Value = "Second"},
        new Entry{Id = "tri", Value = "Third"},
    };

I expect to be serialized as follows:

{
    one: {Title: "First"},
    two: {Title: "Second"},
    tri: {Title: "Third"}
}

Is it possible? Something near ContractResolver?

Thanks.

share|improve this question

2 Answers

Using Json.Net

string json = JsonConvert.SerializeObject(
                       arr.ToDictionary(x => x.Id, x => new { Title = x.Value }));

or JavaScriptSerializer

string json2 = new JavaScriptSerializer()
             .Serialize(arr.ToDictionary(x => x.Id, x => new { Title = x.Value }));
share|improve this answer

Use the JavaScriptSerializer:

var keyValues = new Dictionary<string, string>
           {
               { "one", "First" },
               { "two", "Second" },
               { "three", "Third" }
           };

JavaScriptSerializer js = new JavaScriptSerializer();
string json = js.Serialize(keyValues);
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.