Use inside Python code that has been written on IronPython -
i wrote on ironpython code, compile dll
try use python ctypes.
# mydll.py code on ironpython class pa(object): def convert(self): # code use c# dll # compile way # ipy.exe tools\scripts\pyc.py mydll.py /out:mydll /target:dll /standalone # python interpreter # try use c = ctypes.cdll.loadlibrary("c:\\mydll.dll") c.pa() # attributeerror: function 'pa' not found
by way can use inside python code has been written on ironpython.
possible convert python bite code?
maybe wrote extension on cpython ?
Comments
Post a Comment