I want to serialize this class:
public class CarDisplay
{
public string Name { get; set; }
public string Brand { get; set; }
public string Year { get; set; }
public PictureDisplay[] Pictures { get; set; }
}
public class PictureDisplay
{
public int Id { get; set; }
public string SecretKey { get; set; }
public string AltText { get; set; }
}
To this Json test:
{Name: "Value of the Name", Brand: "Trademark", Year: "Value of the Year", Pictures: ["url1", "url2", "url3"]}
Please note that each car has an array of images with only a url string, and not all properties that the Picture class has.
I know that Json.NET has the concept of Custom Resolver, but I donβt know exactly how to use it.
source
share