I'm using Json.NET (also tried DataContractJsonSerializer) but I just can't figure out how to deal with no named arrays when serializing/deserialising?
My c# classes look something like this:
public class Subheading
{
public IList<Column> columns { get; set; }
public Subheading()
{
Columns = new List<Column>();
}
}
public class Column
{
public IList<Link> links { get; set; }
public Column()
{
Links = new List<Link>();
}
}
public class Link
{
public string label { get; set; }
public string url { get; set; }
}
The Json being generated is something like this:
{
"columns": [
{
"**links**": [
{
"label": "New Releases",
"url": "/usa/collections/sun/newreleases"
},
...
]
},
]
...
}
How do I do to loose the "links" to make it like this?:
{
"columns": [
[
{
"label": "New Releases",
"url": "/usa/collections/sun/newreleases"
},
...
],
...
]
...
}