How to create IronPython objects of types defined in C#

A new article from the "DLR Hosting blog" on creating Python types that inherit from .NET types when hosting IronPython.

Inheriting from .NET types is straightforward in IronPython. The builtin Python types are all .NET types implemented in C# and you can inherit from these, just as in CPython.

The interesting part of the blog entry is that it shows you to how to setup the hosting environment - to make your custom .NET types available to Python code running in the hosted Python engine.

Comments

Popular posts from this blog

Extending Abobe Flash Player and AIR with Python and Ruby

Should Python Projects Support IronPython and Jython?

Further Adventures of the Debugger