Closed
Description
using RestSharp version 105.1.0.0 and the JsonDeserializer
Given a class such as
public class Test
{
public Dictionary<string, object> attributes { get; set; }
}
and Using JSON result:
{
"attributes": {
"THIS_SHOULD_BE_NULL": null,
"NUMBER": 6
}
}
The result is a Dictionary<string, object> where Dictionary["THIS_SHOULD_BE_NULL"] is an empty object instead of NULL
. With Newtonsoft JSON.net the results in NULL (What I expect and want)
ps: I dont use google groups.