3 namespace SiliconStudio.Core.Serialization.Serializers
DataSerializerGenericMode
Defines what generic parameters to pass to the serializer.
The generic arguments of the serialized type will be passed as a generic arguments of the serializer...
The type of the serialized type will be passed as a generic arguments of the serializer. Example: serializer of A becomes instantiated as Serializer{A}.
Combinations of both Type and GenericArguments. Example: serializer of A{T1, T2} becomes instantiated...