As a result of some service action I'm getting in the result property string with value "MyNamespace.Models.Car"
How can I dynamically create the object (empty) from this string value? Or how else can I dynamically recognize clr type from this string?
var result = service.getSomeData(req);
result.CustomVal holds the value of "MyNamespace.Models.Car";
Note that I cannot change the service.