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.
