Are there any alternatives to Python for .NET or IronPython for accessing .NET CLR? Both of these seem to have downsides in that Python for .NET is not under active development (as far as I can tell) and you lose some features available in CPython if you use IronPython. So are there any alternatives?
views:
391answers:
4
+1
A:
As far as I know you are not going to get anything more actively developed than IronPython .
IronPython is currently one of the .NET 5 being developed by the language team (C#, VB.NET, F#, IronPython and IronRuby) so I doubt that there's another open source .NET Python project that's gone anywhere near as far.
George Mauer
2009-03-25 14:37:52
+3
A:
Apart from Python for .NET (which works pretty well for me), the only other solution I'm aware of is exposing the .NET libraries via COM interop, so you can use them via the pywin32 extensions.
(I don't know much about .NET com interop yet, so hopefully someone else can provide further explanation on that.)
Steven
2009-03-25 16:12:25