Json.Net has no problem serializing an overridden property in a child class.
public override ICollection<Person> Persons { get; set; }
But if I try to use new on the property, the serialization fails. There's no exception; Persons are just never serialized.
public new ICollection<Person> Persons { get; set; }
Why is this?
(This example doesn't make much sense, I know. It's only an example. The goal later is to be able to change datatype of the property public new ICollection<PersonDto> Persons { get; set; })
newproperty with the same name? And what class do you serialize? You cannot serialize to the base class if you define the property asnew: thePersonsproperty of the base class is (depending on the rest of your code) simply not initialized, or null, or an empty collection, while thePersonsproperty of the derived class will not be serialized, as it's not seen as part of the base class. – CodeCaster May 9 '12 at 11:35Personmake more sense? – svick May 9 '12 at 12:05