Currently, the serializer only supports primitives (`int32`, `string`, `float` etc.) as dictionary values. Support for non-primitive types should also be added: - [x] `Dictionary<string, MyConcreteClass>` - [x] `Dictionary<string, List<T>>` - [x] `List<Dictionary<string, T>` - [x] `Dictionary<string, Dictionary<string, T>>` - [x] Polymorphic support (serialize only): `Dictionary<string, object>` cc @steveharter
Currently, the serializer only supports primitives (
int32,string,floatetc.) as dictionary values.Support for non-primitive types should also be added:
Dictionary<string, MyConcreteClass>Dictionary<string, List<T>>List<Dictionary<string, T>Dictionary<string, Dictionary<string, T>>Dictionary<string, object>cc @steveharter