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
AddXmlSerializerFormatters adds XML formatters based on XmlSerializer, but it can't handle serialisation of dictionaries, so I'm looking to use a more capable XML serializer instead.
Can this serializer be used with ASP.NET?
AddXmlSerializerFormatters
adds XML formatters based onXmlSerializer
, but it can't handle serialisation of dictionaries, so I'm looking to use a more capable XML serializer instead.