I would like to get the Type for an dynamic object, something like:
dynamic tmp = Activator.CreateInstance(assembly, nmspace + "." + typeName);
Type unknown = tmp.GetType();
Except that in the above, GetType() returns the type of the wrapper for dynamic objects not the type of the wrapped object. Thanks!