DynamicJson icon indicating copy to clipboard operation
DynamicJson copied to clipboard

dynamic json structure for C# 4.0.

Results 2 DynamicJson issues
Sort by recently updated
recently updated
newest added

I tried to process the JSON below: ``` { "party": { "1": { "party_no": "1", "status": "1", "party_name": "第1部隊", "finished_at": null, "slot": { "1": { "serial_id": "11111111", "sword_id": "44" },...

In the method "DeserializeValue", once the nullable type is encountered. For example "datetime?", the conversion will fail. Need to add a method ``` public static class ConvertHelper { #region =...