This is an automated email letting you know that sources
have recently been pushed out. You can download these newer
sources directly from
http://ironpython.codeplex.com/SourceControl/changeset/view/77572.
ADDED SOURCES
$/IronPython/IronPython_Main/External.LCA_RESTRICTED/Languages/Ru
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 clas
Can you take a dependency on IronPython.dll? If so you can cast to IPythonType
and get the type from there.
The reason __class__ doesn't work is that it's declared on object in Python and
C# doesn't see it because it only recognizes .NET members on object. All
members declared on CLR types ar
Hey,
What's the best place to get a kick start with Silverlight and
Ironpython in visual studio 2010?
I bought Ironpython in Action for the silverlight section, but it
looks like the whole section might be out of date? The book cost me
AU$80 !
I've got some specific issues with trying to replica