Deserialize json object as a string
I have a class A that has a field string data. I perform a server request that gets me a json text that I convert to A: var a = JsonConvert.DeserializeObject<A>(jsonResponse); The problem is sometimes data comes as a string…