the value to serialize
associates the value with the given key. This key can later be used to deserialize the value
* Examples:
auto archive = new XmlArchive!(); auto serializer = new Serializer(archive); serializer.serialize(1); serializer.serialize(2, "b");
return the serialized data, in an untyped format.
SerializationException if an error occurs
Serializes the given value.