使用 Python 程式碼中的 .Net 程式集
使用 IronPython,你可以訪問使用與 IronPython 核心相同或更低版本編譯的任何 .net 程式集。
示例:匯入 aa .net 程式集和類
from System import Math
示例:使用匯入的類:
from System import Math
print Math.Abs(-123)
你還可以使用內建的 clr
模組載入其他程式集。
import clr
clr.AddReference('Sample') # Sample.dll inside of the working directory.
而不僅僅是使用它作為任何其他 .net 或 python 庫。