SharpSerializer can serialize types like: multidimensional array, nested array, array-of-arrays, polymorphic object (where value is inherited from the property type), generic type, generic listing (i.e. dictionary, collection) and many more, with a single line of code
I tried to use your serializer on an object containing a property of type FontFamily. I got the following XML:
<Complex name="FontFamily">
Clearly some of its properties are not listed. Also:
I tried to make it ignore the property Transform,, but apparently that only works on properties of the serialized object, and not on sub properties.
Hi,
I tried to use your serializer on an object containing a property of type FontFamily. I got the following XML:
Clearly some of its properties are not listed. Also: I tried to make it ignore the property Transform,, but apparently that only works on properties of the serialized object, and not on sub properties.