Dearl all I have a json string with format line
"rain":{"3h":0.46}
In this case , 'rain' have '3h' object but with this name is dynamic so i can't deserialize object it with JsonConvert , so what are define in class with this name ?
Json2Csharp give me this code
public class Rain
{
public double __invalid_name__3h { get; set; }
}