You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;.