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!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…