-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
values of Dictionary<string, object> serialized incorrectly #26
Comments
Thanks, I will look it
|
Please test. This fix only support recursive values in Dictionary[string, object] and List[any primitive type]. You can set values of Dictionary[string, object] to Dictionary[string, object] as much as you want and it should generate a valid json recursively. |
Thanks, will try it. To clarify: List will not work, correct? |
List works too. The Dictionary is the only one that is constrainted to On Tue, Oct 21, 2014 at 1:15 AM, Albert Meltzer notifications@github.com
|
produces
{"0":0,"1":"1","2":System.Collections.Generic.List
1[System.Int32],"3":System.Collections.Generic.Dictionary2[System.String,System.Object]}
The text was updated successfully, but these errors were encountered: