Hi!

I'd like to get the class name (including the name of the module) of a
dynamic object (IronPython object) in C#. I tried to get the class instance
with code similar to that:

dynamic myobject = item;
dynamic itemClass = myobject.__class__;

Unfortunately this doesn't work. I could get the class name using the
ICustomTypeDescriptor interface, but this doesn't include the module.

Is there a way to do this?

Andreas
_______________________________________________
Users mailing list
Users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to