I get the 'objType' is a variable but is used like a type
compiler error when I try the following code:
Type objType = Type.GetType(objFullyQualifiedName);
object jsonObj= JsonConvert.DeserializeObject<objType> (jsonString);
How can I pass the type I obtain from the fully qualified class name to the DeserializeObject method?