[IronPython] IronPython 2.6 CodePlex Source Update

2010-09-28 Thread merllab
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

[IronPython] Getting Python class of dynamic object from C#

2010-09-28 Thread Andreas Schlapsi
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

Re: [IronPython] Getting Python class of dynamic object from C#

2010-09-28 Thread Dino Viehland
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

[IronPython] ironpython and silverlight

2010-09-28 Thread David P. Novakovic
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