如何使用python代码(IronPython)编写DLL(.NET)?
答案 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)。