This repository was archived by the owner on Apr 25, 2026. It is now read-only.
Version 2.0.1
2.0.1 (2024-11-18)
Bugfixes
- Fixed validation error when deserializing a list of objects. The deserializer would check the wrong token for it's
datatype and throw and exception like this:
Can not deserialize array at position [x] to list: It has a non-integer key 'name' at element [y]
GH #40 - Related to the above: Some nested arrays or arrays with object values would never implicetly deserialize into a
List<object>because the check if the array keys are consecutive integers was faulty. - Do not throw when a property or field is decorated with it's own name such as
[PhpProperty["A"]] public int A;.