我写了IronPython代码,将其编译成dll
现在我尝试使用ctypes进入python。
# mydll.py code on ironpython
class Pa(object):
def convert(self):
# some code that use C# dll
# compile it by this way
# ipy.exe Tools\Scripts\pyc.py myDll.py /out:myDll /target:dll /standalone
# python interpreter
# i try use it
c = ctypes.cdll.LoadLibrary("C:\\myDll.dll")
c.Pa()
# AttributeError: function 'Pa' not found
我可以在IronPython中编写的python代码中使用什么方式
是否可以转换为python咬代码?
也许在CPython上写了一个扩展名?