从Python代码构建.NET DLL?

时间:2010-07-04 23:46:41

标签: python dll build ironpython compilation

如何使用python代码(IronPython)编写DLL(.NET)?

3 个答案:

答案 0 :(得分:3)

您无法从IronPython代码创建标准.NET .dll(.dll可以直接从C#或VB使用)。

pyc.py生成只能由IronPython使用的.dll - 使用Reflector检查这样的.dll,你会理解为什么。

答案 1 :(得分:0)

您可以使用C:\Program Files\[IronPython Program Directory]\Tools\Scripts上的脚本。

答案 2 :(得分:0)

您可以使用ironpycompiler,使用http://pythonhosted.org//ironpycompiler/html-en/command-line.html中的示例。它需要安装IronPython和CPython(常规Python)。